146b98df70b547514924b1bf600512c047a090ba
[cascardo/gnio.git] / gnio / ginet6address.h
1 #ifndef G_INET6_ADDRESS_H
2 #define G_INET6_ADDRESS_H
3
4 #include <glib-object.h>
5 #include <ginetaddress.h>
6
7 G_BEGIN_DECLS
8
9 #define G_TYPE_INET6_ADDRESS         (g_inet6_address_get_type ())
10 #define G_INET6_ADDRESS(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_INET6_ADDRESS, GInet6Address))
11 #define G_INET6_ADDRESS_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_INET6_ADDRESS, GInet6AddressClass))
12 #define G_IS_INET6_ADDRESS(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_INET6_ADDRESS))
13 #define G_IS_INET6_ADDRESS_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_INET6_ADDRESS))
14 #define G_INET6_ADDRESS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_INET6_ADDRESS, GInet6AddressClass))
15
16 typedef struct _GInet6Address        GInet6Address;
17 typedef struct _GInet6AddressClass   GInet6AddressClass;
18 typedef struct _GInet6AddressPrivate GInet6AddressPrivate;
19
20 struct _GInet6Address {
21     
22     GInetAddress parent;
23
24     GInet6AddressPrivate *priv;
25 };
26
27 struct _GInet6AddressClass {
28     
29     GInetAddressClass parent_class;
30 };
31
32
33 GType            g_inet6_address_get_type    (void) G_GNUC_CONST;
34
35 GInet6Address *  g_inet6_address_from_string (const char *string);
36 char *           g_inet6_address_to_string   (GInet6Address *address);
37
38 GInet6Address *  g_inet6_address_from_bytes  (guint8 bytes[]);
39 const guint8 *   g_inet6_address_to_bytes    (GInet6Address *address);
40
41 GInetAddress  *  g_inet6address_new_loopback (void);
42 GInetAddress  *  g_inet6address_new_any      (void);
43 G_END_DECLS
44
45 #endif /* G_INET6_ADDRESS_H */