]> git.meshlink.io Git - catta/blob - avahi-core/socket.h
* strip glib from avahi-core
[catta] / avahi-core / socket.h
1 #ifndef foosockethfoo
2 #define foosockethfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of avahi.
8  
9   avahi is free software; you can redistribute it and/or modify it
10   under the terms of the GNU Lesser General Public License as
11   published by the Free Software Foundation; either version 2.1 of the
12   License, or (at your option) any later version.
13  
14   avahi is distributed in the hope that it will be useful, but WITHOUT
15   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
17   Public License for more details.
18  
19   You should have received a copy of the GNU Lesser General Public
20   License along with avahi; if not, write to the Free Software
21   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22   USA.
23 ***/
24
25 #include <netinet/in.h>
26 #include <inttypes.h>
27
28 #include "dns.h"
29
30 #define AVAHI_MDNS_PORT 5353
31 #define AVAHI_IPV4_MCAST_GROUP "224.0.0.251"
32 #define AVAHI_IPV6_MCAST_GROUP "ff02::fb"
33
34 int avahi_open_socket_ipv4(void);
35 int avahi_open_socket_ipv6(void);
36
37 int avahi_open_legacy_unicast_socket_ipv4(void);
38 int avahi_open_legacy_unicast_socket_ipv6(void);
39
40 int avahi_send_dns_packet_ipv4(int fd, int iface, AvahiDnsPacket *p, const AvahiIPv4Address *a, uint16_t port);
41 int avahi_send_dns_packet_ipv6(int fd, int iface, AvahiDnsPacket *p, const AvahiIPv6Address *a, uint16_t port);
42
43 AvahiDnsPacket *avahi_recv_dns_packet_ipv4(int fd, struct sockaddr_in*ret_sa, AvahiIPv4Address *ret_dest_address, int *ret_iface, uint8_t *ret_ttl);
44 AvahiDnsPacket *avahi_recv_dns_packet_ipv6(int fd, struct sockaddr_in6*ret_sa, AvahiIPv6Address *ret_dest_address, int *ret_iface, uint8_t *ret_ttl);
45
46 int avahi_mdns_mcast_join_ipv4(int fd, int idx);
47 int avahi_mdns_mcast_join_ipv6(int fd, int idx);
48
49 int avahi_mdns_mcast_leave_ipv4(int fd, int idx);
50 int avahi_mdns_mcast_leave_ipv6(int fd, int idx);
51
52 #endif