[vlc-commits] commit: use vlc_socket() ( Rémi Denis-Courmont )
git at videolan.org
git at videolan.org
Wed Mar 31 18:29:50 CEST 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Mar 31 19:08:15 2010 +0300| [eb1988c900eee1c0325d56693b575713befb3716] | committer: Rémi Denis-Courmont
use vlc_socket()
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=eb1988c900eee1c0325d56693b575713befb3716
---
src/network/io.c | 25 ++++++-------------------
1 files changed, 6 insertions(+), 19 deletions(-)
diff --git a/src/network/io.c b/src/network/io.c
index 23d23f1..69b1e0b 100644
--- a/src/network/io.c
+++ b/src/network/io.c
@@ -52,6 +52,7 @@
#endif
#include <vlc_network.h>
+#include <vlc_fs.h>
#ifndef INADDR_ANY
# define INADDR_ANY 0x00000000
@@ -93,26 +94,12 @@ int net_SetupSocket (int fd)
int net_Socket (vlc_object_t *p_this, int family, int socktype,
int protocol)
{
- int fd;
-
-#ifdef SOCK_CLOEXEC
- fd = socket (family, socktype | SOCK_NONBLOCK | SOCK_CLOEXEC, protocol);
- if (fd == -1 && errno == EINVAL)
-#endif
+ int fd = vlc_socket (family, socktype, protocol, true);
+ if (fd == -1)
{
- fd = socket (family, socktype, protocol);
- if (fd == -1)
- {
- if (net_errno != EAFNOSUPPORT)
- msg_Err (p_this, "cannot create socket: %m");
- return -1;
- }
-#ifndef WIN32
- fcntl (fd, F_SETFD, FD_CLOEXEC);
- fcntl (fd, F_SETFL, fcntl (fd, F_GETFL, 0) | O_NONBLOCK);
-#else
- ioctlsocket (fd, FIONBIO, &(unsigned long){ 1 });
-#endif
+ if (net_errno != EAFNOSUPPORT)
+ msg_Err (p_this, "cannot create socket: %m");
+ return -1;
}
setsockopt (fd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof (int));
More information about the vlc-commits
mailing list