diff options
author | Lukas Larsson <[email protected]> | 2014-09-12 12:06:34 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-09-12 12:06:34 +0200 |
commit | a5bfb0a58783c472887ce0ad2060e4a395aa941d (patch) | |
tree | 93dd76737309acb93b79d58a6079ddf15833c5a1 /lib/kernel | |
parent | daa9e1a0d97612f6689685e5a597375ceb9e7b81 (diff) | |
download | otp-a5bfb0a58783c472887ce0ad2060e4a395aa941d.tar.gz otp-a5bfb0a58783c472887ce0ad2060e4a395aa941d.tar.bz2 otp-a5bfb0a58783c472887ce0ad2060e4a395aa941d.zip |
erts: getsockname is not allowed on non-bound sockets
This only produces an error on win32, but should not really be called
on *nix either.
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/test/gen_tcp_api_SUITE_data/gen_tcp_api_SUITE.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/kernel/test/gen_tcp_api_SUITE_data/gen_tcp_api_SUITE.c b/lib/kernel/test/gen_tcp_api_SUITE_data/gen_tcp_api_SUITE.c index 73a6568b30..d774767624 100644 --- a/lib/kernel/test/gen_tcp_api_SUITE_data/gen_tcp_api_SUITE.c +++ b/lib/kernel/test/gen_tcp_api_SUITE_data/gen_tcp_api_SUITE.c @@ -26,8 +26,10 @@ #ifdef __WIN32__ #include <winsock2.h> +#define sock_close(s) closesocket(s) #else #include <sys/socket.h> +#define sock_close(s) close(s) #endif #define sock_open(af, type, proto) socket((af), (type), (proto)) @@ -46,7 +48,7 @@ static ERL_NIF_TERM closesockfd(ErlNifEnv* env, int argc, const ERL_NIF_TERM arg enif_get_int(env, argv[0], &fd); - close(fd); + sock_close(fd); return enif_make_int(env, fd); } |