diff options
author | Micael Karlberg <[email protected]> | 2018-07-18 12:05:00 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2018-09-18 14:50:18 +0200 |
commit | 1a3aca0a849af0bae994c9cf89de0dcfe7b310c2 (patch) | |
tree | b8085134c12d89b06afd3a251005e074e186ca4c /erts/doc | |
parent | ebd626e7b4259bdfb4ddb34ce2d298d0feb0a1c8 (diff) | |
download | otp-1a3aca0a849af0bae994c9cf89de0dcfe7b310c2.tar.gz otp-1a3aca0a849af0bae994c9cf89de0dcfe7b310c2.tar.bz2 otp-1a3aca0a849af0bae994c9cf89de0dcfe7b310c2.zip |
[socket-nif] Add support for socket (level ipv6) option mtu_discover
Added support for the VPv6 socket option MTU_DISCOVER.
OTP-14831.
Diffstat (limited to 'erts/doc')
-rw-r--r-- | erts/doc/src/socket_usage.xml | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/erts/doc/src/socket_usage.xml b/erts/doc/src/socket_usage.xml index cdd98090e8..247cd0eccb 100644 --- a/erts/doc/src/socket_usage.xml +++ b/erts/doc/src/socket_usage.xml @@ -145,7 +145,7 @@ <cell>none</cell> </row> <row> - <cell>peep_off</cell> + <cell>peek_off</cell> <cell>integer()</cell> <cell>yes</cell> <cell>yes</cell> @@ -255,7 +255,7 @@ </row> <row> <cell>mtu_discover</cell> - <cell>ip_mtu_discover()</cell> + <cell>ip_pmtudisc()</cell> <cell>yes</cell> <cell>yes</cell> <cell>none</cell> @@ -377,6 +377,13 @@ <cell>Get: Only after the socket has been connected</cell> </row> <row> + <cell>mtu_discover</cell> + <cell>ipv6_pmtudisc()</cell> + <cell>yes</cell> + <cell>yes</cell> + <cell>none</cell> + </row> + <row> <cell>v6only</cell> <cell>boolean()</cell> <cell>yes</cell> @@ -406,14 +413,14 @@ <cell>integer()</cell> <cell>yes</cell> <cell>yes</cell> - <cell>type = stream, protocol = tcp</cell> + <cell>none</cell> </row> <row> <cell>nodelay</cell> <cell>boolean()</cell> <cell>yes</cell> <cell>yes</cell> - <cell>type = stream, protocol = tcp</cell> + <cell>none</cell> </row> </table> @@ -431,7 +438,7 @@ <cell>boolean()</cell> <cell>yes</cell> <cell>yes</cell> - <cell>type = dgram, protocol = udp</cell> + <cell>none</cell> </row> </table> @@ -449,14 +456,14 @@ <cell>integer()</cell> <cell>yes</cell> <cell>yes</cell> - <cell>protocol = sctp</cell> + <cell>none</cell> </row> <row> <cell>nodelay</cell> <cell>boolean()</cell> <cell>yes</cell> <cell>yes</cell> - <cell>protocol = sctp</cell> + <cell>none</cell> </row> </table> |