summaryrefslogtreecommitdiffstats
path: root/avahi-common/address.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-06-24 19:02:51 +0000
committerLennart Poettering <lennart@poettering.net>2005-06-24 19:02:51 +0000
commit9962a048634c590db23a00db1d01daada779844c (patch)
tree521108bad5026135c129396d3c317738ec151818 /avahi-common/address.h
parent9f9f4f6ea2405edc642d322c19f6f13e31920046 (diff)
* implement new source address check mechanisms
* introduce new types AvahiIfIndex and AvahiProtocol to abstract underlying OS structures a bit * document string list, address and other stuff * implement qclass = ANY queries * don't make use of UTF8 collation as RFC mandates git-svn-id: file:///home/lennart/svn/public/avahi/trunk@144 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-common/address.h')
-rw-r--r--avahi-common/address.h52
1 files changed, 45 insertions, 7 deletions
diff --git a/avahi-common/address.h b/avahi-common/address.h
index 22cb74b..4b5fb27 100644
--- a/avahi-common/address.h
+++ b/avahi-common/address.h
@@ -25,38 +25,76 @@
#include <sys/socket.h>
#include <glib.h>
+/** Protocol family specification, takes the values AVAHI_INET, AVAHI_INET6, AVAHI_UNSPEC */
+typedef guchar AvahiProtocol;
+
+/** Numeric network interface index. Takes OS dependent values and the special constant AVAHI_IF_UNSPEC */
+typedef gint AvahiIfIndex;
+
+/** Values for AvahiProtocol */
+enum {
+ AVAHI_PROTO_INET = AF_INET, /**< IPv4 */
+ AVAHI_PROTO_INET6 = AF_INET6, /**< IPv6 */
+ AVAHI_PROTO_UNSPEC = AF_UNSPEC /**< Unspecified/all protocol(s) */
+};
+
+/** Special values for AvahiIfIndex */
+enum {
+ AVAHI_IF_UNSPEC = -1 /**< Unspecifed/all interfaces */
+};
+
+/** An IPv4 address */
typedef struct {
- guint32 address;
+ guint32 address; /**< Address data in network byte order. */
} AvahiIPv4Address;
+/** An IPv6 address */
typedef struct {
- guint8 address[16];
+ guint8 address[16]; /**< Address data */
} AvahiIPv6Address;
+/** Protocol (address family) independant address structure */
typedef struct {
- guchar family;
+ AvahiProtocol family; /**< Address family */
union {
- AvahiIPv6Address ipv6;
- AvahiIPv4Address ipv4;
- guint8 data[1];
+ AvahiIPv6Address ipv6; /** Address when IPv6 */
+ AvahiIPv4Address ipv4; /** Address when IPv4 */
+ guint8 data[1]; /** Type independant data field */
} data;
} AvahiAddress;
+/** Return the address data size of the specified address. (4 for IPv4, 16 for IPv6) */
guint avahi_address_get_size(const AvahiAddress *a);
+
+/** Compare two addresses. Returns 0 when equal, a negative value when a < b, a positive value when a > b. */
gint avahi_address_cmp(const AvahiAddress *a, const AvahiAddress *b);
+/** Convert the specified address *a to a human readable character string */
gchar *avahi_address_snprint(char *ret_s, guint length, const AvahiAddress *a);
-AvahiAddress *avahi_address_parse(const char *s, guchar family, AvahiAddress *ret_addr);
+/** Convert the specifeid human readable character string to an
+ * address structure. Set af to AVAHI_UNSPEC for automatic address
+ * family detection. */
+AvahiAddress *avahi_address_parse(const char *s, AvahiProtocol af, AvahiAddress *ret_addr);
+/** Make an address structture of a sockaddr structure */
AvahiAddress *avahi_address_from_sockaddr(const struct sockaddr* sa, AvahiAddress *ret_addr);
+
+/** Return the port number of a sockaddr structure (either IPv4 or IPv6) */
guint16 avahi_port_from_sockaddr(const struct sockaddr* sa);
+/** Generate the DNS reverse lookup name for an IPv4 address. g_free() the result! */
gchar* avahi_reverse_lookup_name_ipv4(const AvahiIPv4Address *a);
+
+/** Generate the modern DNS reverse lookup name for an IPv6 address, ending in ipv6.arpa. g_free() the result! */
gchar* avahi_reverse_lookup_name_ipv6_arpa(const AvahiIPv6Address *a);
+
+/** Generate the historic DNS reverse lookup name for an IPv6 address, ending in ipv6.int. g_free() the result! */
gchar* avahi_reverse_lookup_name_ipv6_int(const AvahiIPv6Address *a);
+/** Check whether the specified IPv6 address is in fact an
+ * encapsulated IPv4 address */
gboolean avahi_address_is_ipv4_in_ipv6(const AvahiAddress *a);
#endif