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.
50 NiceCandidate
*candidate
;
53 memset (&addr
, 0, sizeof (addr
));
54 candidate
= nice_candidate_from_string ("x");
55 g_assert (candidate
== NULL
);
57 g_assert (nice_address_set_from_string (&addr
, "192.168.0.1"));
59 candidate
= nice_candidate_from_string ("H/192.168.0.1/1234/foo/bar");
60 g_assert (candidate
!= NULL
);
61 g_assert (nice_address_equal (&addr
, &(candidate
->addr
)));
62 g_assert (0 == strcmp (candidate
->username
, "foo"));
63 g_assert (0 == strcmp (candidate
->password
, "bar"));
65 str
= nice_candidate_to_string (candidate
);
66 g_assert (0 == strcmp (str
, "H/192.168.0.1/1234/foo/bar"));
69 nice_candidate_free (candidate
);