2 This file is part of systemd.
4 Copyright 2014 Tom Gundersen <teg@jklm.no>
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 typedef struct VxLan VxLan
;
24 #include "in-addr-util.h"
25 #include "networkd-netdev.h"
27 #define VXLAN_VID_MAX (1u << 24) - 1
35 union in_addr_union group
;
47 bool route_short_circuit
;
55 struct ifla_vxlan_port_range port_range
;
58 extern const NetDevVTable vxlan_vtable
;
60 int config_parse_vxlan_group_address(const char *unit
,
64 unsigned section_line
,
70 int config_parse_port_range(const char *unit
,
74 unsigned section_line
,
81 int config_parse_destination_port(const char *unit
,
85 unsigned section_line
,