#ifndef _BIRD_WIREGUARD_H #define _BIRD_WIREGUARD_H #include "nest/protocol.h" struct wg_config { struct proto_config c; const char *ifname; }; struct wg_proto { struct proto p; struct iface *iface; }; struct wg_channel_config { struct channel_config c; }; struct wg_channel { struct channel c; struct fib rtable; }; struct wg_entry { struct fib_node n; }; extern struct channel_class channel_wg; #endif /* _BIRD_WIREGUARD_H */