summaryrefslogtreecommitdiff
path: root/libavformat/network.h
diff options
context:
space:
mode:
authorRémi Denis-Courmont <remi@remlab.net>2013-08-08 22:26:42 +0300
committerMartin Storsjö <martin@martin.st>2013-08-09 11:26:50 +0300
commit9d5ec50ead97e088d77317e77b18cef06cb3d053 (patch)
tree7e5fc7b137bd4afcc4a221eb0d426e0e7ceaf755 /libavformat/network.h
parentfa09e76010b7db5ae0c7af9b7412096359ecd8c8 (diff)
ff_socket: put out-of-line and fallback to fcntl() for close-on-exec
This supports non-Linux systems (SOCK_CLOEXEC is non-standard) and older Linux kernels to the extent possible. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/network.h')
-rw-r--r--libavformat/network.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/libavformat/network.h b/libavformat/network.h
index 85b8f6dfc1..1d3fb7b7e0 100644
--- a/libavformat/network.h
+++ b/libavformat/network.h
@@ -249,13 +249,6 @@ int ff_listen_connect(int fd, const struct sockaddr *addr,
int ff_http_match_no_proxy(const char *no_proxy, const char *hostname);
-#ifndef SOCK_CLOEXEC
-#define SOCK_CLOEXEC 0
-#endif
-
-static inline int ff_socket(int domain, int type, int protocol)
-{
- return socket(domain, type | SOCK_CLOEXEC, protocol);
-}
+int ff_socket(int domain, int type, int protocol);
#endif /* AVFORMAT_NETWORK_H */