]> git.sesse.net Git - vlc/commitdiff
vlc_socket: create socket with close-on-exec à la vlc_dup()
authorRémi Denis-Courmont <remi@remlab.net>
Wed, 31 Mar 2010 16:07:47 +0000 (19:07 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Wed, 31 Mar 2010 16:07:47 +0000 (19:07 +0300)
include/vlc_fs.h
src/text/filesystem.c

index 3486f0a7ff309c09c55e540cfa5d45897b7cc424..9ff820096555d9e5d790d0c8089cd7c54e35d803 100644 (file)
@@ -54,5 +54,6 @@ VLC_EXPORT( int, vlc_lstat, ( const char *filename, struct stat *buf ) );
 VLC_EXPORT( int, vlc_mkstemp, ( char * ) );
 
 VLC_EXPORT( int, vlc_dup, ( int ) );
+int vlc_socket (int, int, int, bool nonblock);
 
 #endif
index b57a27d868abbfd4a5cd7d21b279e4d27231eea9..a0d10502337327e4b396cffafda6e9e1d24fa57d 100644 (file)
@@ -42,9 +42,6 @@
 #ifdef HAVE_DIRENT_H
 #  include <dirent.h>
 #endif
-#ifdef UNDER_CE
-#  include <tchar.h>
-#endif
 #ifdef HAVE_SYS_STAT_H
 # include <sys/stat.h>
 #endif
 #endif
 #ifdef WIN32
 # include <io.h>
+# include <winsock2.h>
 # ifndef UNDER_CE
 #  include <direct.h>
+# else
+#  include <tchar.h>
 # endif
 #else
 # include <unistd.h>
+# include <sys/socket.h>
 #endif
 
 #ifndef HAVE_LSTAT
@@ -615,3 +616,42 @@ int vlc_dup (int oldfd)
 #endif
     return newfd;
 }
+
+/**
+ * Creates a socket file descriptor. The new file descriptor has the
+ * close-on-exec flag set.
+ * @param pf protocol family
+ * @param type socket type
+ * @param proto network protocol
+ * @param nonblock true to create a non-blocking socket
+ * @return a new file descriptor or -1
+ */
+int vlc_socket (int pf, int type, int proto, bool nonblock)
+{
+    int fd;
+
+#ifdef SOCK_CLOEXEC
+    type |= SOCK_CLOEXEC;
+    if (nonblock)
+        type |= SOCK_NONBLOCK;
+    fd = socket (pf, type | SOCK_NONBLOCK | SOCK_CLOEXEC, proto);
+    if (fd != -1 || errno != EINVAL)
+        return fd;
+
+    type &= ~(SOCK_CLOEXEC|SOCK_NONBLOCK);
+#endif
+
+    fd = socket (pf, type, proto);
+    if (fd == -1)
+        return -1;
+
+#ifndef WIN32
+    fcntl (fd, F_SETFD, FD_CLOEXEC);
+    if (nonblock)
+        fcntl (fd, F_SETFL, fcntl (fd, F_GETFL, 0) | O_NONBLOCK);
+#else
+    if (nonblock)
+        ioctlsocket (fd, FIONBIO, &(unsigned long){ 1 });
+#endif
+    return fd;
+}