blob: 6ad9b427800b8c935e14c5741c087302cfd9b680 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#ifndef __INTERFACE_IP_H
#define __INTERFACE_IP_H
enum device_addr_flags {
/* address family for routes and addresses */
DEVADDR_INET4 = (0 << 0),
DEVADDR_INET6 = (1 << 0),
DEVADDR_FAMILY = DEVADDR_INET4 | DEVADDR_INET6,
/* device route (no gateway) */
DEVADDR_DEVICE = (1 << 1),
/* externally added address */
DEVADDR_EXTERNAL = (1 << 2),
};
union if_addr {
struct in_addr in;
struct in6_addr in6;
};
struct device_addr {
struct vlist_node node;
enum device_addr_flags flags;
/* must be last */
unsigned int mask;
union if_addr addr;
};
struct device_route {
struct vlist_node node;
enum device_addr_flags flags;
bool keep;
union if_addr nexthop;
struct device *device;
/* must be last */
unsigned int mask;
union if_addr addr;
};
struct dns_server {
struct list_head list;
int af;
union if_addr addr;
};
struct dns_search_domain {
struct list_head list;
char name[];
};
void interface_ip_init(struct interface *iface);
void interface_add_dns_server(struct interface *iface, const char *str);
void interface_add_dns_server_list(struct interface *iface, struct blob_attr *list);
void interface_add_dns_search_list(struct interface *iface, struct blob_attr *list);
void interface_clear_dns(struct interface *iface);
void interface_write_resolv_conf(void);
void interface_ip_update_start(struct interface *iface);
void interface_ip_update_complete(struct interface *iface);
#endif
|