]> git.meshlink.io Git - catta/blob - avahi-common/address.h
* implement new source address check mechanisms
[catta] / avahi-common / address.h
1 #ifndef fooaddresshfoo
2 #define fooaddresshfoo
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 <sys/socket.h>
26 #include <glib.h>
27
28 /** Protocol family specification, takes the values AVAHI_INET, AVAHI_INET6, AVAHI_UNSPEC */
29 typedef guchar AvahiProtocol;
30
31 /** Numeric network interface index. Takes OS dependent values and the special constant AVAHI_IF_UNSPEC  */
32 typedef gint AvahiIfIndex;
33
34 /** Values for AvahiProtocol */
35 enum {
36     AVAHI_PROTO_INET = AF_INET,     /**< IPv4 */
37     AVAHI_PROTO_INET6 = AF_INET6,   /**< IPv6 */
38     AVAHI_PROTO_UNSPEC = AF_UNSPEC  /**< Unspecified/all protocol(s) */
39 };
40
41 /** Special values for AvahiIfIndex */
42 enum {
43     AVAHI_IF_UNSPEC = -1 /**< Unspecifed/all interfaces */
44 };
45
46 /** An IPv4 address */
47 typedef struct {
48     guint32 address; /**< Address data in network byte order. */
49 } AvahiIPv4Address;
50
51 /** An IPv6 address */
52 typedef struct {
53     guint8 address[16]; /**< Address data */
54 } AvahiIPv6Address;
55
56 /** Protocol (address family) independant address structure */
57 typedef struct {
58     AvahiProtocol family; /**< Address family */
59
60     union {
61         AvahiIPv6Address ipv6;  /** Address when IPv6 */
62         AvahiIPv4Address ipv4;  /** Address when IPv4 */
63         guint8 data[1];         /** Type independant data field */
64     } data;
65 } AvahiAddress;
66
67 /** Return the address data size of the specified address. (4 for IPv4, 16 for IPv6) */
68 guint avahi_address_get_size(const AvahiAddress *a);
69
70 /** Compare two addresses. Returns 0 when equal, a negative value when a < b, a positive value when a > b. */
71 gint avahi_address_cmp(const AvahiAddress *a, const AvahiAddress *b);
72
73 /** Convert the specified address *a to a human readable character string */
74 gchar *avahi_address_snprint(char *ret_s, guint length, const AvahiAddress *a);
75
76 /** Convert the specifeid human readable character string to an
77  * address structure. Set af to AVAHI_UNSPEC for automatic address
78  * family detection. */
79 AvahiAddress *avahi_address_parse(const char *s, AvahiProtocol af, AvahiAddress *ret_addr);
80
81 /** Make an address structture of a sockaddr structure */
82 AvahiAddress *avahi_address_from_sockaddr(const struct sockaddr* sa, AvahiAddress *ret_addr);
83
84 /** Return the port number of a sockaddr structure (either IPv4 or IPv6) */
85 guint16 avahi_port_from_sockaddr(const struct sockaddr* sa);
86
87 /** Generate the DNS reverse lookup name for an IPv4 address. g_free() the result! */
88 gchar* avahi_reverse_lookup_name_ipv4(const AvahiIPv4Address *a);
89
90 /** Generate the modern DNS reverse lookup name for an IPv6 address, ending in ipv6.arpa. g_free() the result! */
91 gchar* avahi_reverse_lookup_name_ipv6_arpa(const AvahiIPv6Address *a);
92
93 /** Generate the historic DNS reverse lookup name for an IPv6 address, ending in ipv6.int. g_free() the result! */
94 gchar* avahi_reverse_lookup_name_ipv6_int(const AvahiIPv6Address *a);
95
96 /** Check whether the specified IPv6 address is in fact an
97  * encapsulated IPv4 address */
98 gboolean avahi_address_is_ipv4_in_ipv6(const AvahiAddress *a);
99
100 #endif