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.
28 * Alternatively, the contents of this file may be used under the terms of the
29 * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
30 * case the provisions of LGPL are applicable instead of those above. If you
31 * wish to allow use of your version of this file only under the terms of the
32 * LGPL and not to allow others to use your version of this file under the
33 * MPL, indicate your decision by deleting the provisions above and replace
34 * them with the notice and other provisions required by the LGPL. If you do
35 * not delete the provisions above, a recipient may use your version of this
36 * file under either the MPL or the LGPL.
44 #include <nice/nice.h>
45 #include "socket/socket.h"
47 static GMainLoop
*loop
= NULL
;
58 g_assert (agent
!= NULL
);
59 g_assert (stream_id
== 1);
60 g_assert (component_id
== 1);
62 g_assert (0 == strncmp (buf
, "\x80hello", len
));
63 g_assert (42 == GPOINTER_TO_UINT (data
));
64 g_main_loop_quit (loop
);
74 nice_address_init (&addr
);
76 #if !GLIB_CHECK_VERSION(2,31,8)
80 loop
= g_main_loop_new (NULL
, FALSE
);
82 agent
= nice_agent_new (g_main_loop_get_context (loop
), NICE_COMPATIBILITY_RFC5245
);
83 nice_address_set_ipv4 (&addr
, 0x7f000001);
84 nice_agent_add_local_address (agent
, &addr
);
85 stream
= nice_agent_add_stream (agent
, 1);
86 nice_agent_gather_candidates (agent
, stream
);
88 // attach to default main context
89 nice_agent_attach_recv (agent
, stream
, NICE_COMPONENT_TYPE_RTP
,
90 g_main_loop_get_context (loop
), recv_cb
, GUINT_TO_POINTER (42));
93 NiceCandidate
*candidate
;
94 GSList
*candidates
, *i
;
96 candidates
= nice_agent_get_local_candidates (agent
, 1, 1);
97 candidate
= candidates
->data
;
99 nice_socket_send (candidate
->sockptr
, &(candidate
->addr
), 6, "\x80hello");
100 for (i
= candidates
; i
; i
= i
->next
)
101 nice_candidate_free ((NiceCandidate
*) i
->data
);
102 g_slist_free (candidates
);
105 g_main_loop_run (loop
);
107 g_object_unref (agent
);