diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-08-03 15:00:11 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-08-05 16:13:36 +0200 |
commit | bb9378251a167ef0116f263912e57f715c1e02ac (patch) | |
tree | 5accf9f37eb3d899a816a1c918877a5305b4f4cb /libavformat/network.h | |
parent | 605387582bd35920b83a26dabbe1c0601f425621 (diff) | |
download | ffmpeg-bb9378251a167ef0116f263912e57f715c1e02ac.tar.gz |
network: Use SOCK_CLOEXEC when available
Diffstat (limited to 'libavformat/network.h')
-rw-r--r-- | libavformat/network.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/network.h b/libavformat/network.h index fe136c4e47..99d96afda9 100644 --- a/libavformat/network.h +++ b/libavformat/network.h @@ -246,4 +246,13 @@ 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); +} + #endif /* AVFORMAT_NETWORK_H */ |