155682Smarkm/* SPDX-License-Identifier: GPL-2.0 OR MIT */
2178825Sdfr/*
355682Smarkm * Copyright (C) 2015-2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
455682Smarkm */
555682Smarkm
655682Smarkm#ifndef IPC_H
755682Smarkm#define IPC_H
855682Smarkm
9127808Snectar#include <stdbool.h>
1055682Smarkm
1155682Smarkmstruct wgdevice;
12178825Sdfr
1355682Smarkmint ipc_set_device(struct wgdevice *dev);
1455682Smarkmint ipc_get_device(struct wgdevice **dev, const char *interface);
1555682Smarkmchar *ipc_list_devices(void);
1655682Smarkm
1755682Smarkm#endif
1855682Smarkm