2 * This file is part of the Nice GLib ICE library.
4 * (C) 2006, 2007 Collabora Ltd.
5 * Contact: Dafydd Harries
6 * (C) 2006, 2007 Nokia Corporation. All rights reserved.
7 * Contact: Kai Vehmanen
9 * The contents of this file are subject to the Mozilla Public License Version
10 * 1.1 (the "License"); you may not use this file except in compliance with
11 * the License. You may obtain a copy of the License at
12 * http://www.mozilla.org/MPL/
14 * Software distributed under the License is distributed on an "AS IS" basis,
15 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
16 * for the specific language governing rights and limitations under the
19 * The Original Code is the Nice GLib ICE library.
21 * The Initial Developers of the Original Code are Collabora Ltd and Nokia
22 * Corporation. All Rights Reserved.
25 * Dafydd Harries, Collabora Ltd.
27 * Alternatively, the contents of this file may be used under the terms of the
28 * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
29 * case the provisions of LGPL are applicable instead of those above. If you
30 * wish to allow use of your version of this file only under the terms of the
31 * LGPL and not to allow others to use your version of this file under the
32 * MPL, indicate your decision by deleting the provisions above and replace
33 * them with the notice and other provisions required by the LGPL. If you do
34 * not delete the provisions above, a recipient may use your version of this
35 * file under either the MPL or the LGPL.
41 #include <sys/types.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
49 #define NICE_ADDRESS_STRING_LEN INET6_ADDRSTRLEN
51 typedef struct _NiceAddress NiceAddress
;
53 /* note: clients need to know the storage size, so needs to be public */
59 struct sockaddr_in ip4
;
60 struct sockaddr_in6 ip6
;
65 nice_address_init (NiceAddress
*addr
)
67 addr
->s
.addr
.sa_family
= AF_UNSPEC
;
71 nice_address_new (void);
74 nice_address_free (NiceAddress
*addr
);
77 nice_address_dup (const NiceAddress
*a
);
80 nice_address_set_ipv4 (NiceAddress
*addr
, guint32 addr_ipv4
);
83 nice_address_set_ipv6 (NiceAddress
*addr
, const guchar
*addr_ipv6
);
86 nice_address_set_port (NiceAddress
*addr
, guint port
);
89 nice_address_get_port (const NiceAddress
*addr
);
91 G_GNUC_WARN_UNUSED_RESULT
93 nice_address_set_from_string (NiceAddress
*addr
, const gchar
*str
);
96 nice_address_set_from_sockaddr (NiceAddress
*addr
, const struct sockaddr
*sin
);
99 nice_address_copy_to_sockaddr (const NiceAddress
*addr
, struct sockaddr
*sin
);
102 nice_address_equal (const NiceAddress
*a
, const NiceAddress
*b
);
105 nice_address_to_string (const NiceAddress
*addr
, gchar
*dst
);
108 nice_address_is_private (const NiceAddress
*a
);
110 G_GNUC_WARN_UNUSED_RESULT
112 nice_address_is_valid (const NiceAddress
*a
);
116 #endif /* _ADDRESS_H */