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.
54 server
= nice_udp_bsd_socket_new (NULL
);
56 g_assert_not_reached();
58 // not bound to a particular interface
59 g_assert (server
->addr
.s
.ip4
.sin_addr
.s_addr
== 0);
60 // is bound to a particular port
61 g_assert (nice_address_get_port (&server
->addr
) != 0);
63 g_assert ((client
= nice_udp_bsd_socket_new (NULL
)) != NULL
);
64 // not bound to a particular interface
65 g_assert (client
->addr
.s
.ip4
.sin_addr
.s_addr
== 0);
66 // is bound to a particular port
67 g_assert (nice_address_get_port (&client
->addr
) != 0);
69 if (!nice_address_set_from_string (&tmp
, "127.0.0.1"))
70 g_assert_not_reached();
71 g_assert (nice_address_get_port (&server
->addr
) != 0);
72 nice_address_set_port (&tmp
, nice_address_get_port (&server
->addr
));
73 g_assert (nice_address_get_port (&tmp
) != 0);
75 nice_socket_send (client
, &tmp
, 5, "hello");
77 g_assert (5 == nice_socket_recv (server
, &tmp
, 5, buf
));
78 g_assert (0 == strncmp (buf
, "hello", 5));
79 g_assert (nice_address_get_port (&tmp
)
80 == nice_address_get_port (&client
->addr
));
82 nice_socket_send (server
, &tmp
, 5, "uryyb");
83 g_assert (5 == nice_socket_recv (client
, &tmp
, 5, buf
));
84 g_assert (0 == strncmp (buf
, "uryyb", 5));
85 g_assert (nice_address_get_port (&tmp
)
86 == nice_address_get_port (&server
->addr
));
88 nice_socket_free (client
);
89 nice_socket_free (server
);