summaryrefslogtreecommitdiff
path: root/socket/socket.c
diff options
context:
space:
mode:
authorYouness Alaoui <youness.alaoui@collabora.co.uk>2008-12-08 15:35:14 -0500
committerYouness Alaoui <youness.alaoui@collabora.co.uk>2008-12-08 15:35:14 -0500
commit0cf65d142c4d4d8a10de41941e7da539c0774208 (patch)
treeaadf6f069060ae2016c1876483e155daa453cb5f /socket/socket.c
parent24261d9d248abb04075d623c3d3d8a0a9003956a (diff)
downloadlibnice-0cf65d142c4d4d8a10de41941e7da539c0774208.tar.gz
Socket layer refactorising and adding of tcp-bsd, pseudossl, and moved the tcp stuff from tcp-turn and made udp-turn into turn since it's generic
Diffstat (limited to 'socket/socket.c')
-rw-r--r--socket/socket.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/socket/socket.c b/socket/socket.c
index 146f864..1ec2fde 100644
--- a/socket/socket.c
+++ b/socket/socket.c
@@ -45,21 +45,14 @@
gint
-nice_socket_recv (
- NiceSocket *sock,
- NiceAddress *from,
- guint len,
- gchar *buf)
+nice_socket_recv (NiceSocket *sock, NiceAddress *from, guint len, gchar *buf)
{
return sock->recv (sock, from, len, buf);
}
gboolean
-nice_socket_send (
- NiceSocket *sock,
- const NiceAddress *to,
- guint len,
- const gchar *buf)
+nice_socket_send (NiceSocket *sock, const NiceAddress *to,
+ guint len, const gchar *buf)
{
return sock->send (sock, to, len, buf);
}