diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2019-03-08 17:45:56 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-05-08 18:52:55 +0200 |
commit | b1c63e8cedcd834c8078faae388cd4f4bbe07dde (patch) | |
tree | 4c38433b1f904ccd72749c75a58fab02d531b7af /proto | |
parent | 4ad9ec6810a4604a844fda0179e666cdf9aa6a46 (diff) |
Wireguard: Clean up config.Y
Diffstat (limited to 'proto')
-rw-r--r-- | proto/wireguard/config.Y | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/proto/wireguard/config.Y b/proto/wireguard/config.Y index dfe621bd..7eee4a65 100644 --- a/proto/wireguard/config.Y +++ b/proto/wireguard/config.Y @@ -16,7 +16,7 @@ CF_DEFINES CF_DECLS -CF_KEYWORDS(WIREGUARD, PEERS) +CF_KEYWORDS(WIREGUARD) CF_GRAMMAR @@ -32,17 +32,8 @@ wireguard_proto: | wireguard_proto proto_channel ';' { this_proto->net_type = $2->net_type; } | wireguard_proto proto_item ';' | wireguard_proto INTERFACE TEXT ';' { WG_CFG->ifname = $3; } - | wireguard_proto PEERS '{' peers '}' ; -peers: - /* empty */ - | peers peer - -peer: ipa pubkey ';' - -pubkey: TEXT - CF_CODE CF_END |