diff options
author | Youness Alaoui <youness.alaoui@collabora.co.uk> | 2008-12-08 15:35:14 -0500 |
---|---|---|
committer | Youness Alaoui <youness.alaoui@collabora.co.uk> | 2008-12-08 15:35:14 -0500 |
commit | 0cf65d142c4d4d8a10de41941e7da539c0774208 (patch) | |
tree | aadf6f069060ae2016c1876483e155daa453cb5f /socket/socket.h | |
parent | 24261d9d248abb04075d623c3d3d8a0a9003956a (diff) | |
download | libnice-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.h')
-rw-r--r-- | socket/socket.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/socket/socket.h b/socket/socket.h index a8e17d3..b1aed31 100644 --- a/socket/socket.h +++ b/socket/socket.h @@ -69,18 +69,11 @@ struct _NiceSocket G_GNUC_WARN_UNUSED_RESULT gint -nice_socket_recv ( - NiceSocket *sock, - NiceAddress *from, - guint len, - gchar *buf); +nice_socket_recv (NiceSocket *sock, NiceAddress *from, guint len, gchar *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); gboolean nice_socket_is_reliable (NiceSocket *sock); @@ -90,7 +83,9 @@ void nice_socket_free (NiceSocket *sock); #include "udp-bsd.h" -#include "udp-turn.h" +#include "tcp-bsd.h" +#include "pseudossl.h" +#include "turn.h" #include "tcp-turn.h" G_END_DECLS |