Commit 35192613 authored by Youness Alaoui's avatar Youness Alaoui

port test-bsd to the new API

parent 9e7a0709
...@@ -45,15 +45,13 @@ ...@@ -45,15 +45,13 @@
int int
main (void) main (void)
{ {
NiceSocketFactory *factory;
NiceSocket *server; NiceSocket *server;
NiceSocket *client; NiceSocket *client;
NiceAddress tmp; NiceAddress tmp;
gchar buf[5]; gchar buf[5];
factory = nice_socket_factory_new (NICE_SOCKET_FACTORY_UDP_BSD);
server = nice_socket_new (factory, NULL); server = nice_udp_bsd_socket_new (NULL);
if (!server) if (!server)
g_assert_not_reached(); g_assert_not_reached();
...@@ -62,7 +60,7 @@ main (void) ...@@ -62,7 +60,7 @@ main (void)
// is bound to a particular port // is bound to a particular port
g_assert (nice_address_get_port (&server->addr) != 0); g_assert (nice_address_get_port (&server->addr) != 0);
g_assert ((client = nice_socket_new (factory, NULL)) != NULL); g_assert ((client = nice_udp_bsd_socket_new (NULL)) != NULL);
// not bound to a particular interface // not bound to a particular interface
g_assert (client->addr.s.ip4.sin_addr.s_addr == 0); g_assert (client->addr.s.ip4.sin_addr.s_addr == 0);
// is bound to a particular port // is bound to a particular port
...@@ -89,7 +87,6 @@ main (void) ...@@ -89,7 +87,6 @@ main (void)
nice_socket_free (client); nice_socket_free (client);
nice_socket_free (server); nice_socket_free (server);
nice_socket_factory_free (factory);
return 0; return 0;
} }
...@@ -121,7 +121,6 @@ socket_close (NiceSocket *sock) ...@@ -121,7 +121,6 @@ socket_close (NiceSocket *sock)
close (sock->fileno); close (sock->fileno);
} }
/*** NiceSocketFactory ***/
NiceSocket * NiceSocket *
nice_udp_bsd_socket_new (NiceAddress *addr) nice_udp_bsd_socket_new (NiceAddress *addr)
......
...@@ -486,7 +486,6 @@ socket_close (NiceSocket *sock) ...@@ -486,7 +486,6 @@ socket_close (NiceSocket *sock)
g_free (priv); g_free (priv);
} }
/*** NiceSocketFactory ***/
NICEAPI_EXPORT NiceSocket * NICEAPI_EXPORT NiceSocket *
nice_udp_turn_socket_new ( nice_udp_turn_socket_new (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment