#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 fib rtable; struct iface *iface; }; struct wg_entry { struct fib_node n; }; #endif /* _BIRD_WIREGUARD_H */