diff options
author | Susant Sahani <ssahani@users.noreply.github.com> | 2016-06-14 22:41:57 +0530 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-06-14 19:11:57 +0200 |
commit | 1d7100298c2a696d99f6fbd6ab858762aeb51ac7 (patch) | |
tree | dc1dc5a4dab85277b7e1940222ad19b53e4bbe8f /src/network/networkd-netdev-gperf.gperf | |
parent | 91bb59b4b18ef6417a2cb3d933d44f7e6920304d (diff) |
networkd: Tunnel add support to configure key for VTI/VTI6 (#3532)
fixes #3298
Diffstat (limited to 'src/network/networkd-netdev-gperf.gperf')
-rw-r--r-- | src/network/networkd-netdev-gperf.gperf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/network/networkd-netdev-gperf.gperf b/src/network/networkd-netdev-gperf.gperf index a9512cd77b..bf93b0d9fa 100644 --- a/src/network/networkd-netdev-gperf.gperf +++ b/src/network/networkd-netdev-gperf.gperf @@ -42,6 +42,9 @@ Tunnel.Local, config_parse_tunnel_address, 0, Tunnel.Remote, config_parse_tunnel_address, 0, offsetof(Tunnel, remote) Tunnel.TOS, config_parse_unsigned, 0, offsetof(Tunnel, tos) Tunnel.TTL, config_parse_unsigned, 0, offsetof(Tunnel, ttl) +Tunnel.Key, config_parse_tunnel_key, 0, offsetof(Tunnel, key) +Tunnel.InputKey, config_parse_tunnel_key, 0, offsetof(Tunnel, ikey) +Tunnel.OutputKey, config_parse_tunnel_key, 0, offsetof(Tunnel, okey) Tunnel.DiscoverPathMTU, config_parse_bool, 0, offsetof(Tunnel, pmtudisc) Tunnel.Mode, config_parse_ip6tnl_mode, 0, offsetof(Tunnel, ip6tnl_mode) Tunnel.IPv6FlowLabel, config_parse_ipv6_flowlabel, 0, offsetof(Tunnel, ipv6_flowlabel) |