GUnixSocketAddress: handle abstract sockets with non-0-padded names
[platform/upstream/glib.git] / gio / tests / socket-common.c
1 /* #included into both socket-client.c and socket-server.c */
2
3 static const char *unix_socket_address_types[] = {
4   "invalid",
5   "anonymous",
6   "path",
7   "abstract",
8   "padded"
9 };
10
11 static char *
12 socket_address_to_string (GSocketAddress *address)
13 {
14   char *res;
15
16   if (G_IS_INET_SOCKET_ADDRESS (address))
17     {
18       GInetAddress *inet_address;
19       char *str;
20       int port;
21
22       inet_address = g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address));
23       str = g_inet_address_to_string (inet_address);
24       port = g_inet_socket_address_get_port (G_INET_SOCKET_ADDRESS (address));
25       res = g_strdup_printf ("%s:%d", str, port);
26       g_free (str);
27     }
28   else if (G_IS_UNIX_SOCKET_ADDRESS (address))
29     {
30       GUnixSocketAddress *uaddr = G_UNIX_SOCKET_ADDRESS (address);
31
32       res = g_strdup_printf ("%s:%s",
33                              unix_socket_address_types[g_unix_socket_address_get_address_type (uaddr)],
34                              g_unix_socket_address_get_path (uaddr));
35     }
36
37   return res;
38 }
39
40 GSocketAddress *
41 socket_address_from_string (const char *name)
42 {
43   int i, len;
44
45   for (i = 0; i < G_N_ELEMENTS (unix_socket_address_types); i++)
46     {
47       len = strlen (unix_socket_address_types[i]);
48       if (!strncmp (name, unix_socket_address_types[i], len) &&
49           name[len] == ':')
50         {
51           return g_unix_socket_address_new_with_type (name + len + 1, -1,
52                                                       (GUnixSocketAddressType)i);
53         }
54     }
55   return NULL;
56 }