diff --git a/modules/access/http/h1conn_test.c b/modules/access/http/h1conn_test.c index 773d64a5040947286d86dcd4d2ae8257f38c50d0..1fd6d565ae452f3cfc26dde50b4150d6f2f253ec 100644 --- a/modules/access/http/h1conn_test.c +++ b/modules/access/http/h1conn_test.c @@ -30,9 +30,6 @@ #include <sys/types.h> #include <unistd.h> #include <sys/socket.h> -#ifndef SOCK_CLOEXEC -# define SOCK_CLOEXEC 0 -#endif #include <vlc_common.h> #include <vlc_block.h> @@ -47,7 +44,7 @@ static void conn_create(void) { int fds[2]; - if (socketpair(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC, 0, fds)) + if (vlc_socketpair(PF_LOCAL, SOCK_STREAM, 0, fds, false)) assert(!"socketpair"); struct vlc_tls *tls = vlc_tls_DummyCreate(NULL, fds[1]); diff --git a/modules/access/http/h2conn_test.c b/modules/access/http/h2conn_test.c index 4cce51c081c507c7b2f53d33631b3b766dacfe9c..a531495465567edd70acd376b7d12fd089720a57 100644 --- a/modules/access/http/h2conn_test.c +++ b/modules/access/http/h2conn_test.c @@ -30,9 +30,6 @@ #include <sys/types.h> #include <unistd.h> #include <sys/socket.h> -#ifndef SOCK_CLOEXEC -# define SOCK_CLOEXEC 0 -#endif #include <vlc_common.h> #include <vlc_block.h> @@ -93,7 +90,7 @@ static void conn_create(void) int fds[2]; char hello[24]; - if (socketpair(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC, 0, fds)) + if (vlc_socketpair(PF_LOCAL, SOCK_STREAM, 0, fds, false)) assert(!"socketpair"); struct vlc_tls *tls = vlc_tls_DummyCreate(NULL, fds[1]); diff --git a/src/os2/filesystem.c b/src/os2/filesystem.c index 8ee29d30d6ac0f2ae7838fd68ac7972a3b917010..256b9cc1c4c36b5500f3169e4525343798b40f93 100644 --- a/src/os2/filesystem.c +++ b/src/os2/filesystem.c @@ -258,7 +258,7 @@ int vlc_dup (int oldfd) int vlc_pipe (int fds[2]) { - if (socketpair (AF_LOCAL, SOCK_STREAM, 0, fds)) + if (vlc_socketpair (AF_LOCAL, SOCK_STREAM, 0, fds, false)) return -1; shutdown (fds[0], SHUT_WR); @@ -267,8 +267,6 @@ int vlc_pipe (int fds[2]) setmode (fds[0], O_BINARY); setmode (fds[1], O_BINARY); - fcntl (fds[0], F_SETFD, FD_CLOEXEC); - fcntl (fds[1], F_SETFD, FD_CLOEXEC); return 0; } diff --git a/test/modules/misc/tls.c b/test/modules/misc/tls.c index 0145536d5b5cd7977421bebb8219139cd3c7c2c7..5a2c7dabcd9aa322eebba7862b2043a91424a04b 100644 --- a/test/modules/misc/tls.c +++ b/test/modules/misc/tls.c @@ -30,9 +30,6 @@ #include <sys/types.h> #include <sys/socket.h> -#ifndef SOCK_CLOEXEC -# define SOCK_CLOEXEC 0 -#endif #include <poll.h> #include <fcntl.h> #include <unistd.h> @@ -47,12 +44,7 @@ static int tlspair(int fds[2]) { - if (socketpair(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC, 0, fds)) - return -1; - - fcntl(fds[0], F_SETFL, O_NONBLOCK | fcntl(fds[0], F_GETFL)); - fcntl(fds[1], F_SETFL, O_NONBLOCK | fcntl(fds[1], F_GETFL)); - return 0; + return vlc_socketpair(PF_LOCAL, SOCK_STREAM, 0, fds, true); } static int question_callback(vlc_object_t *obj, const char *varname,