diff options
author | Raimo Niskanen <[email protected]> | 2017-04-24 10:49:21 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-04-24 10:49:21 +0200 |
commit | 3ab6bcf6f9a44c998610bdf8863c07fb4f221da9 (patch) | |
tree | 00b080f34d98f1016b1b7417058db2efbbe24851 /erts/preloaded | |
parent | 98b666c9a7a9a53b339dcfe66cb73d319804021d (diff) | |
parent | e801a2ac82644221bdb6213f9592c05fea1e2af3 (diff) | |
download | otp-3ab6bcf6f9a44c998610bdf8863c07fb4f221da9.tar.gz otp-3ab6bcf6f9a44c998610bdf8863c07fb4f221da9.tar.bz2 otp-3ab6bcf6f9a44c998610bdf8863c07fb4f221da9.zip |
Merge pull request #1326 from RoadRunnr/feature/so_bindtodevice
Merge branch RoadRunnr/feature/so_bindtodevice (GitHub#1326) into master
OTP-14357
Diffstat (limited to 'erts/preloaded')
-rw-r--r-- | erts/preloaded/src/prim_inet.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/preloaded/src/prim_inet.erl b/erts/preloaded/src/prim_inet.erl index 61f727e8a4..19f8b0d873 100644 --- a/erts/preloaded/src/prim_inet.erl +++ b/erts/preloaded/src/prim_inet.erl @@ -1234,6 +1234,7 @@ enc_opt(netns) -> ?INET_LOPT_NETNS; enc_opt(show_econnreset) -> ?INET_LOPT_TCP_SHOW_ECONNRESET; enc_opt(line_delimiter) -> ?INET_LOPT_LINE_DELIM; enc_opt(raw) -> ?INET_OPT_RAW; +enc_opt(bind_to_device) -> ?INET_OPT_BIND_TO_DEVICE; % Names of SCTP opts: enc_opt(sctp_rtoinfo) -> ?SCTP_OPT_RTOINFO; enc_opt(sctp_associnfo) -> ?SCTP_OPT_ASSOCINFO; @@ -1294,6 +1295,7 @@ dec_opt(?INET_LOPT_NETNS) -> netns; dec_opt(?INET_LOPT_TCP_SHOW_ECONNRESET) -> show_econnreset; dec_opt(?INET_LOPT_LINE_DELIM) -> line_delimiter; dec_opt(?INET_OPT_RAW) -> raw; +dec_opt(?INET_OPT_BIND_TO_DEVICE) -> bind_to_device; dec_opt(I) when is_integer(I) -> undefined. @@ -1395,6 +1397,7 @@ type_opt_1(packet_size) -> uint; type_opt_1(read_packets) -> uint; type_opt_1(netns) -> binary; type_opt_1(show_econnreset) -> bool; +type_opt_1(bind_to_device) -> binary; %% %% SCTP options (to be set). If the type is a record type, the corresponding %% record signature is returned, otherwise, an "elementary" type tag |