/* Copyright (C) 2015-2017 Jason A. Donenfeld . All Rights Reserved. */ #ifndef IPC_H #define IPC_H #include struct wgdevice; int ipc_set_device(struct wgdevice *dev); int ipc_get_device(struct wgdevice **dev, const char *interface); char *ipc_list_devices(void); bool ipc_has_device(const char *interface); #endif