-
Notifications
You must be signed in to change notification settings - Fork 6
/
interface.h
79 lines (63 loc) · 1.87 KB
/
interface.h
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
69
70
71
72
73
74
75
76
77
78
79
/*
* Copyright (C) 2014 John Crispin <[email protected]>
* Copyright (C) 2014 Felix Fietkau <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef __MDNS_INTERFACE_H
#define __MDNS_INTERFACE_H
#include <sys/types.h>
#include <sys/uio.h>
#include <arpa/inet.h>
#include <libubox/uloop.h>
#include <libubox/vlist.h>
extern struct vlist_tree interfaces;
#define SOCKTYPE_BIT_IPV6 (1 << 1)
#define SOCKTYPE_BIT_UNICAST (1 << 0)
enum umdns_socket_type {
SOCK_MC_IPV4 = 0,
SOCK_UC_IPV4 = SOCKTYPE_BIT_UNICAST,
SOCK_MC_IPV6 = SOCKTYPE_BIT_IPV6,
SOCK_UC_IPV6 = SOCKTYPE_BIT_IPV6 | SOCKTYPE_BIT_UNICAST,
};
struct interface_addr_list {
union {
struct {
struct in_addr addr, mask;
} *v4;
struct {
struct in6_addr addr, mask;
} *v6;
};
int n_addr;
};
struct interface {
struct vlist_node node;
const char *name;
enum umdns_socket_type type;
int ifindex;
struct interface_addr_list addrs;
struct uloop_timeout announce_timer;
int announce_state;
};
static inline bool interface_multicast(struct interface *iface)
{
return !(iface->type & SOCKTYPE_BIT_UNICAST);
}
static inline bool interface_ipv6(struct interface *iface)
{
return !!(iface->type & SOCKTYPE_BIT_IPV6);
}
int interface_add(const char *name);
int interface_init(void);
void interface_shutdown(void);
int interface_send_packet(struct interface *iface, struct sockaddr *to, struct iovec *iov, int iov_len);
struct interface* interface_get(const char *name, enum umdns_socket_type type);
#endif