summaryrefslogtreecommitdiff
path: root/src/network/networkd-gperf.gperf
blob: 7fbe4669acfabfd81e6008d71896b4d8dc3e47ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
%{
#include <stddef.h>
#include "conf-parser.h"
#include "networkd.h"
#include "net-util.h"
%}
struct ConfigPerfItem;
%null_strings
%language=ANSI-C
%define slot-name section_and_lvalue
%define hash-function-name network_gperf_hash
%define lookup-function-name network_gperf_lookup
%readonly-tables
%omit-struct-type
%struct-type
%includes
%%
Match.MACAddress,        config_parse_hwaddr,           0,       offsetof(Network, match_mac)
Match.Path,              config_parse_string,           0,       offsetof(Network, match_path)
Match.Driver,            config_parse_string,           0,       offsetof(Network, match_driver)
Match.Type,              config_parse_string,           0,       offsetof(Network, match_type)
Match.Name,              config_parse_ifname,           0,       offsetof(Network, match_name)
Network.Description,     config_parse_string,           0,       offsetof(Network, description)
Network.Address,         config_parse_address,          0,       0
Network.Gateway,         config_parse_gateway,          0,       0
Address.Address,         config_parse_address,          0,       0
Address.Label,           config_parse_label,            0,       0