diff options
author | Micael Karlberg <[email protected]> | 2018-06-29 18:23:55 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2018-09-18 14:50:18 +0200 |
commit | 24be0729fe3a1ccfd5f0713b565463d6557d8aa7 (patch) | |
tree | 2243a51ada05a3ddeacd443ed6e49262cf79766c /erts/emulator/nifs/common/socket_int.h | |
parent | b09136301525b0717e897ec0864c3d2ea7708758 (diff) | |
download | otp-24be0729fe3a1ccfd5f0713b565463d6557d8aa7.tar.gz otp-24be0729fe3a1ccfd5f0713b565463d6557d8aa7.tar.bz2 otp-24be0729fe3a1ccfd5f0713b565463d6557d8aa7.zip |
[socket-nif] Fixed (stream) recv
Fixed handling of closed in the recv function.
We still need to properly handle when we get
0 bytes of data for other types ock sockets
then stream (its valid for dgram for instance).
OTP-14831
Diffstat (limited to 'erts/emulator/nifs/common/socket_int.h')
-rw-r--r-- | erts/emulator/nifs/common/socket_int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/nifs/common/socket_int.h b/erts/emulator/nifs/common/socket_int.h index d6a612cab6..a3e54360fe 100644 --- a/erts/emulator/nifs/common/socket_int.h +++ b/erts/emulator/nifs/common/socket_int.h @@ -192,6 +192,7 @@ extern ERL_NIF_TERM esock_atom_einval; #define GET_INT(E, TE, IP) enif_get_int((E), (TE), (IP)) #define GET_LIST_ELEM(E, L, HP, TP) enif_get_list_cell((E), (L), (HP), (TP)) #define GET_LIST_LEN(E, L, LP) enif_get_list_length((E), (L), (LP)) +#define GET_LPID(E, T, P) enif_get_local_pid((E), (T), (P)) #define GET_STR(E, L, B, SZ) \ enif_get_string((E), (L), (B), (SZ), ERL_NIF_LATIN1) #define GET_UINT(E, TE, IP) enif_get_uint((E), (TE), (IP)) |