chiark / gitweb /
resolve-host: make arg_type an int
[elogind.git] / src / resolve / resolved-link.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2014 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <net/if.h>
25
26 #include "in-addr-util.h"
27 #include "ratelimit.h"
28
29 typedef struct Link Link;
30 typedef struct LinkAddress LinkAddress;
31
32 #include "resolved-dns-server.h"
33 #include "resolved-dns-scope.h"
34 #include "resolved-dns-rr.h"
35 #include "resolved-manager.h"
36
37 struct LinkAddress {
38         Link *link;
39
40         int family;
41         union in_addr_union in_addr;
42
43         unsigned char flags, scope;
44
45         DnsResourceRecord *llmnr_address_rr;
46         DnsResourceRecord *llmnr_ptr_rr;
47
48         LIST_FIELDS(LinkAddress, addresses);
49 };
50
51 struct Link {
52         Manager *manager;
53
54         int ifindex;
55         unsigned flags;
56
57         LIST_HEAD(LinkAddress, addresses);
58
59         LIST_HEAD(DnsServer, dns_servers);
60         DnsServer *current_dns_server;
61
62         DnsScope *unicast_scope;
63         DnsScope *llmnr_ipv4_scope;
64         DnsScope *llmnr_ipv6_scope;
65
66         char name[IF_NAMESIZE];
67         uint32_t mtu;
68
69         RateLimit mdns_ratelimit;
70         RateLimit llmnr_ratelimit;
71 };
72
73 int link_new(Manager *m, Link **ret, int ifindex);
74 Link *link_free(Link *l);
75 int link_update_rtnl(Link *l, sd_rtnl_message *m);
76 int link_update_monitor(Link *l);
77 bool link_relevant(Link *l, int family);
78 LinkAddress* link_find_address(Link *l, int family, const union in_addr_union *in_addr);
79 void link_add_rrs(Link *l, bool force_remove);
80
81 DnsServer* link_set_dns_server(Link *l, DnsServer *s);
82 DnsServer* link_find_dns_server(Link *l, int family, const union in_addr_union *in_addr);
83 DnsServer* link_get_dns_server(Link *l);
84 void link_next_dns_server(Link *l);
85
86 int link_address_new(Link *l, LinkAddress **ret, int family, const union in_addr_union *in_addr);
87 LinkAddress *link_address_free(LinkAddress *a);
88 int link_address_update_rtnl(LinkAddress *a, sd_rtnl_message *m);
89 bool link_address_relevant(LinkAddress *l);
90 void link_address_add_rrs(LinkAddress *a, bool force_remove);
91
92 DEFINE_TRIVIAL_CLEANUP_FUNC(Link*, link_free);