First set of changes for windows
[cascardo/gnio.git] / gnio / ginet6address.c
1 /* GNIO - GLib Network Layer of GIO
2  * 
3  * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Authors: Christian Kellner <gicmo@gnome.org>
21  *          Samuel Cormier-Iijima <sciyoshi@gmail.com>
22  */
23
24 #include <config.h>
25 #include <string.h>
26 #include <glib.h>
27
28 #include "ginet6address.h"
29
30 G_DEFINE_TYPE (GInet6Address, g_inet6_address, G_TYPE_INET_ADDRESS);
31
32 struct _GInet6AddressPrivate {
33   union {
34     guint8  u6_addr8[16];
35     guint16 u6_addr16[8];
36     guint32 u6_addr32[4];
37   } addr;
38 };
39
40 static void
41 g_inet6_address_finalize (GObject *object)
42 {
43   GInet6Address *address G_GNUC_UNUSED = G_INET6_ADDRESS (object);
44
45   if (G_OBJECT_CLASS (g_inet6_address_parent_class)->finalize)
46     (*G_OBJECT_CLASS (g_inet6_address_parent_class)->finalize) (object);
47 }
48
49 static void
50 g_inet6_address_dispose (GObject *object)
51 {
52   GInet6Address *address G_GNUC_UNUSED = G_INET6_ADDRESS (object);
53
54   if (G_OBJECT_CLASS (g_inet6_address_parent_class)->dispose)
55     (*G_OBJECT_CLASS (g_inet6_address_parent_class)->dispose) (object);
56 }
57
58 static void
59 g_inet6_address_class_init (GInet6AddressClass *klass)
60 {
61   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
62
63   g_type_class_add_private (klass, sizeof (GInet6AddressPrivate));
64
65   gobject_class->finalize = g_inet6_address_finalize;
66   gobject_class->dispose = g_inet6_address_dispose;
67 }
68
69 static void
70 g_inet6_address_init (GInet6Address *address)
71 {
72   address->priv = G_TYPE_INSTANCE_GET_PRIVATE (address,
73                                                G_TYPE_INET6_ADDRESS,
74                                                GInet6AddressPrivate);
75 }
76
77 /* ************************************************************************* */
78 /* Public Functions */
79
80 GInet6Address *
81 g_inet6_address_from_string (const char *string)
82 {
83   return NULL;
84 }
85
86 char *
87 g_inet6_address_to_string (GInet6Address *address)
88 {
89   return NULL;
90 }
91
92 GInet6Address *
93 g_inet6_address_from_bytes (guint8 bytes[])
94 {
95   GInet6Address *address = G_INET6_ADDRESS (g_object_new (G_TYPE_INET6_ADDRESS, NULL));
96
97   g_memmove (address->priv->addr.u6_addr8, bytes, 16);
98
99   return address;
100 }
101
102 const guint8 *
103 g_inet6_address_to_bytes (GInet6Address *address)
104 {
105   return NULL;
106 }
107
108 GInet6Address *
109 g_inet6_address_new_loopback (void)
110 {
111   guint8 bytes[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1};
112
113   return g_inet6_address_from_bytes (bytes);
114 }
115
116 GInet6Address *
117 g_inet6_address_new_any (void)
118 {
119   return NULL; 
120 }