diff options
Diffstat (limited to 'proto/wireguard/wireguard.h')
-rw-r--r-- | proto/wireguard/wireguard.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/proto/wireguard/wireguard.h b/proto/wireguard/wireguard.h index 992bb12b..3217df32 100644 --- a/proto/wireguard/wireguard.h +++ b/proto/wireguard/wireguard.h @@ -10,13 +10,23 @@ struct wg_config { struct wg_proto { struct proto p; - struct fib rtable; 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 */ |