aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/ipc.h
blob: 4cb7dca384997ed7def16a1cae4e8d252e23b7c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
 */

#ifndef IPC_H
#define IPC_H

#include <stdbool.h>

#include "containers.h"

struct wgdevice;

int ipc_set_device(struct wgnetns *dev_netns, struct wgdevice *dev);
int ipc_get_device(struct wgnetns *dev_netns, struct wgdevice **dev,
		const char *interface);
char *ipc_list_devices(void);

#endif