]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd-network/network-internal.h
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / libsystemd-network / network-internal.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include <stdbool.h>
5
6 #include "sd-device.h"
7 #include "sd-dhcp-lease.h"
8
9 #include "condition.h"
10 #include "conf-parser.h"
11 #include "def.h"
12 #include "set.h"
13 #include "strv.h"
14
15 #define LINK_BRIDGE_PORT_PRIORITY_INVALID 128
16 #define LINK_BRIDGE_PORT_PRIORITY_MAX 63
17
18 bool net_match_config(Set *match_mac,
19 char * const *match_path,
20 char * const *match_driver,
21 char * const *match_type,
22 char * const *match_name,
23 Condition *match_host,
24 Condition *match_virt,
25 Condition *match_kernel_cmdline,
26 Condition *match_kernel_version,
27 Condition *match_arch,
28 const struct ether_addr *dev_mac,
29 const char *dev_path,
30 const char *dev_driver,
31 const char *dev_type,
32 const char *dev_name);
33
34 CONFIG_PARSER_PROTOTYPE(config_parse_net_condition);
35 CONFIG_PARSER_PROTOTYPE(config_parse_hwaddr);
36 CONFIG_PARSER_PROTOTYPE(config_parse_hwaddrs);
37 CONFIG_PARSER_PROTOTYPE(config_parse_ifnames);
38 CONFIG_PARSER_PROTOTYPE(config_parse_ifalias);
39 CONFIG_PARSER_PROTOTYPE(config_parse_bridge_port_priority);
40
41 int net_get_unique_predictable_data(sd_device *device, uint64_t *result);
42 const char *net_get_name(sd_device *device);
43
44 size_t serialize_in_addrs(FILE *f,
45 const struct in_addr *addresses,
46 size_t size,
47 bool with_leading_space,
48 bool (*predicate)(const struct in_addr *addr));
49 int deserialize_in_addrs(struct in_addr **addresses, const char *string);
50 void serialize_in6_addrs(FILE *f, const struct in6_addr *addresses,
51 size_t size);
52 int deserialize_in6_addrs(struct in6_addr **addresses, const char *string);
53
54 /* don't include "dhcp-lease-internal.h" as it causes conflicts between netinet/ip.h and linux/ip.h */
55 struct sd_dhcp_route;
56
57 void serialize_dhcp_routes(FILE *f, const char *key, sd_dhcp_route **routes, size_t size);
58 int deserialize_dhcp_routes(struct sd_dhcp_route **ret, size_t *ret_size, size_t *ret_allocated, const char *string);
59
60 /* It is not necessary to add deserialize_dhcp_option(). Use unhexmem() instead. */
61 int serialize_dhcp_option(FILE *f, const char *key, const void *data, size_t size);
62
63 #define NETWORK_DIRS ((const char* const*) CONF_PATHS_STRV("systemd/network"))