Add space
[sipe-libnice.git] / udp / udp-client.c
blob1f6d81d84239d292ee332b695a70af769c432b71
1 /*
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
17 * License.
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.
24 * Contributors:
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.
37 #ifdef HAVE_CONFIG_H
38 # include "config.h"
39 #endif
41 #include <string.h>
42 #include <stdio.h>
44 #include "udp-bsd.h"
46 gint
47 main (void)
49 NiceUDPSocketFactory man;
50 NiceUDPSocket sock;
51 NiceAddress addr;
53 nice_udp_bsd_socket_factory_init (&man);
55 if (!nice_udp_socket_factory_make (&man, &sock, NULL))
56 g_assert_not_reached ();
58 if (!nice_address_set_from_string (&addr, "127.0.0.1"))
59 g_assert_not_reached ();
61 nice_address_set_port (&addr, 9999);
63 for (;;)
65 gchar buf[1024];
66 gint length;
68 if (fgets (buf, sizeof (buf), stdin) == NULL)
69 break;
71 nice_udp_socket_send (&sock, &addr, strlen (buf), buf);
72 length = nice_udp_socket_recv (&sock, &addr, sizeof (buf), buf);
73 g_print (buf);
76 nice_udp_socket_close (&sock);
77 nice_udp_socket_factory_close (&man);
78 return 0;