summaryrefslogtreecommitdiffstats
path: root/interface.h
blob: 4ba6eeeb322dda247c2ff812100fceda1982f774 (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
/*
 * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
 * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
 *
 * 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;

struct interface {
	struct vlist_node node;
	struct interface *peer;

	const char *name;
	char *id;
	struct uloop_fd fd;
	struct uloop_timeout reconnect;

	int v6;
	int multicast;
	int ifindex;

	struct in_addr v4_addr;
	struct in_addr v4_netmask;
	struct in6_addr v6_addr;
	struct in6_addr v6_netmask;
	char v4_addrs[16];
	char v6_addrs[64];

	struct uloop_timeout announce_timer;
	int announce_state;

	char *mcast_addr;
};

int interface_add(const char *name);
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, int v6, int multicast);

#endif