1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
|
<!--
%CopyrightBegin%
Copyright Ericsson AB 2023-2025. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
%CopyrightEnd%
-->
# Socket Usage
## Introduction
The socket interface (module) is basically a "thin" layer on top of the OS
socket interface. It is assumed that, unless you have special needs,
gen\_\[tcp|udp|sctp] should be sufficient (when they become available).
Note that just because we have a documented and described option, it does _not_
mean that the OS supports it. So its recommended that the user reads the
platform specific documentation for the option used.
### Asynchronous calls
Some functions allow for an _asynchronous_ call
([`accept/2`](`m:socket#accept-nowait`),
[`connect/3`](`m:socket#connect-nowait`), [`recv/3,4`](`m:socket#recv-nowait`),
[`recvfrom/3,4`](`m:socket#recvfrom-nowait`),
[`recvmsg/2,3,5`](`m:socket#recvmsg-nowait`),
[`send/3,4`](`m:socket#send-nowait`), [`sendmsg/3,4`](`m:socket#sendmsg-nowait`)
and [`sendto/4,5`](`m:socket#sendto-nowait`)). This is achieved by setting the
`Timeout` argument to `nowait`. For instance, if calling the
[`recv/3`](`m:socket#recv-nowait`) function with Timeout set to `nowait` (i.e.
`recv(Sock, 0, nowait)`) when there is actually nothing to read, it will return
with:
- **On Unix** - `{select, `[`SelectInfo`](`t:socket:select_info/0`)`}`
`SelectInfo` contains the [`SelectHandle`](`t:socket:select_handle/0`).
- **On Windows** -
`{completion, `[`CompletionInfo`](`t:socket:completion_info/0`)`}`
`CompletionInfo` contains the
[`CompletionHandle`](`t:socket:completion_handle/0`).
When data eventually arrives a 'select' or 'completion' message will be sent to
the caller:
- **On Unix** - `{'$socket', socket(), select, SelectHandle}`
The caller can then make another call to the recv function and now expect
data.
Note that all other users are _locked out_ until the 'current user' has called
the function (recv in this case). So either immediately call the function or
[`cancel`](`socket:cancel/2`).
- **On Windows** -
`{'$socket', socket(), completion, {CompletionHandle, CompletionStatus}}`
The `CompletionStatus` contains the result of the operation (read).
The user must also be prepared to receive an abort message:
- `{'$socket', socket(), abort, Info}`
If the operation is aborted for whatever reason (e.g. if the socket is closed
"by someone else"). The `Info` part contains the abort reason (in this case that
the socket has been closed `Info = {SelectHandle, closed}`).
The general form of the 'socket' message is:
- `{'$socket', Sock :: socket(), Tag :: atom(), Info :: term()}`
Where the format of `Info` is a function of `Tag`:
| _Tag_ | _Info value type_ |
| ---------- | ----------------------------------------- |
| select | select_handle() |
| completion | \{completion_handle(), CompletionStatus\} |
| abort | \{select_handle(), Reason :: term()\} |
_Table: socket message info value type_
The `select_handle()` is the same as was returned in the
[`SelectInfo`](`t:socket:select_info/0`).
The `completion_handle()` is the same as was returned in the
[`CompletionInfo`](`t:socket:completion_info/0`).
## Socket Registry
The _socket registry_ is how we keep track of sockets. There are two functions
that can be used for interaction: `socket:number_of/0` and
`socket:which_sockets/1`.
In systems which create and delete _many_ sockets dynamically, it (the socket
registry) could become a bottleneck. For such systems, there are a couple of
ways to control the use of the socket registry.
Firstly, its possible to effect the global default value when building OTP from
source with the two configure options:
```text
--enable-esock-socket-registry (default) | --disable-esock-socket-registry
```
Second, its possible to effect the global default value by setting the
environment variable `ESOCK_USE_SOCKET_REGISTRY` (boolean) before starting the
erlang.
Third, its possible to alter the global default value in runtime by calling the
function [`use_registry/1`](`socket:use_registry/1`).
And finally, its possible to override the global default when creating a socket
(with [`open/2`](`socket:open/2`) and [`open/4`](`socket:open/4`)) by providing
the attribute `use_registry` (boolean) in the their `Opts` argument (which
effects _that_ specific socket).
## Example
This example is intended to show how to create a simple (echo) server
(and client), handling both 'select' and 'completion' (Unix and Windows).
```erlang
-module(example).
-export([client/2, client/3]).
-export([server/0, server/1, server/2]).
%% ======================================================================
%% === Client ===
client(#{family := Family} = ServerSockAddr, Msg)
when is_list(Msg) orelse is_binary(Msg) ->
{ok, Sock} = socket:open(Family, stream, default),
ok = maybe_bind(Sock, Family),
ok = socket:connect(Sock, ServerSockAddr),
client_exchange(Sock, Msg);
client(ServerPort, Msg)
when is_integer(ServerPort) andalso (ServerPort > 0) ->
Family = inet, % Default
Addr = get_local_addr(Family), % Pick an address
SockAddr = #{family => Family,
addr => Addr,
port => ServerPort},
client(SockAddr, Msg).
client(ServerPort, ServerAddr, Msg)
when is_integer(ServerPort) andalso (ServerPort > 0) andalso
is_tuple(ServerAddr) ->
Family = which_family(ServerAddr),
SockAddr = #{family => Family,
addr => ServerAddr,
port => ServerPort},
client(SockAddr, Msg).
%% Send the message to the (echo) server and wait for the echo to come back.
client_exchange(Sock, Msg) when is_list(Msg) ->
client_exchange(Sock, list_to_binary(Msg));
client_exchange(Sock, Msg) when is_binary(Msg) ->
ok = socket:send(Sock, Msg, infinity),
{ok, Msg} = socket:recv(Sock, byte_size(Msg), infinity),
ok = socket:close(Sock),
ok.
%% ======================================================================
%% === Server ===
server() ->
%% Make system choose port (and address)
server(0).
%% This function return the port and address that it actually uses,
%% in case server/0 or server/1 (with a port number) was used to start it.
server(#{family := Family, addr := Addr, port := _} = SockAddr) ->
{ok, Sock} = socket:open(Family, stream, tcp),
ok = socket:bind(Sock, SockAddr),
ok = socket:listen(Sock),
{ok, #{port := Port}} = socket:sockname(Sock),
Acceptor = start_acceptor(Sock),
{ok, {Port, Addr, Acceptor}};
server(Port) when is_integer(Port) ->
Family = inet, % Default
Addr = get_local_addr(Family), % Pick an address
SockAddr = #{family => Family,
addr => Addr,
port => Port},
server(SockAddr).
server(Port, Addr)
when is_integer(Port) andalso (Port >= 0) andalso
is_tuple(Addr) ->
Family = which_family(Addr),
SockAddr = #{family => Family,
addr => Addr,
port => Port},
server(SockAddr).
%% --- Echo Server - Acceptor ---
start_acceptor(LSock) ->
Self = self(),
{Pid, MRef} = spawn_monitor(fun() -> acceptor_init(Self, LSock) end),
receive
{'DOWN', MRef, process, Pid, Info} ->
erlang:error({failed_starting_acceptor, Info});
{Pid, started} ->
%% Transfer ownership
socket:setopt(LSock, otp, owner, Pid),
Pid ! {self(), continue},
erlang:demonitor(MRef),
Pid
end.
acceptor_init(Parent, LSock) ->
Parent ! {self(), started},
receive
{Parent, continue} ->
ok
end,
acceptor_loop(LSock, undefined).
acceptor_loop(LSock, undefined = Info) ->
case socket:accept(LSock, nowait) of
{ok, ASock} ->
start_handler(ASock),
acceptor_loop(LSock, Info);
{select, SelectInfo} ->
acceptor_loop(LSock, SelectInfo);
{completion, CompletionInfo} ->
acceptor_loop(LSock, CompletionInfo);
{error, Reason} ->
erlang:error({accept_failed, Reason})
end;
acceptor_loop(LSock, {select_info, accept, SelectHandle}) ->
receive
{'$socket', LSock, select, SelectHandle} ->
case socket:accept(LSock, SelectHandle) of
{ok, ASock} ->
start_handler(ASock),
acceptor_loop(LSock, undefined);
{select, NewSelectInfo} ->
acceptor_loop(LSock, NewSelectInfo);
{error, Reason} ->
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({select, accept, Reason})
end
end;
{'$socket', LSock, abort, {SelectHandle, Reason}} ->
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({select, abort, Reason})
end
end;
%% This is the (asyncronous) behaviour on platforms that support 'completion',
%% currently only Windows.
acceptor_loop(LSock, {completion_info, accept, CompletionHandle}) ->
receive
{'$socket', LSock, completion, {CompletionHandle, CompletionStatus}} ->
case CompletionStatus of
{ok, ASock} ->
start_handler(ASock),
acceptor_loop(LSock, undefined);
{error, Reason} ->
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({completion, accept, Reason})
end
end;
{'$socket', LSock, abort, {CompletionHandle, Reason}} ->
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({completion, abort, Reason})
end
end.
%% --- Echo Server - Handler ---
start_handler(Sock) ->
Self = self(),
{Pid, MRef} = spawn_monitor(fun() -> handler_init(Self, Sock) end),
receive
{'DOWN', MRef, process, Pid, Info} ->
erlang:error({failed_starting_handler, Info});
{Pid, started} ->
%% Transfer ownership
socket:setopt(Sock, otp, owner, Pid),
Pid ! {self(), continue},
erlang:demonitor(MRef),
Pid
end.
handler_init(Parent, Sock) ->
Parent ! {self(), started},
receive
{Parent, continue} ->
ok
end,
handler_loop(Sock, undefined).
%% No "ongoing" reads
%% The use of 'nowait' here is clearly *overkill* for this use case,
%% but is intended as an example of how to use it.
handler_loop(Sock, undefined) ->
case socket:recv(Sock, 0, nowait) of
{ok, Data} ->
echo(Sock, Data),
handler_loop(Sock, undefined);
{select, SelectInfo} ->
handler_loop(Sock, SelectInfo);
{completion, CompletionInfo} ->
handler_loop(Sock, CompletionInfo);
{error, Reason} ->
io:format("handle_loop(undef) -> error: "
"~n Reason: ~p"
"~n", [Reason]),
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({recv_failed, Reason})
end
end;
%% This is the standard (asyncronous) behaviour.
handler_loop(Sock, {select_info, recv, SelectHandle}) ->
receive
{'$socket', Sock, select, SelectHandle} ->
case socket:recv(Sock, 0, nowait) of
{ok, Data} ->
echo(Sock, Data),
handler_loop(Sock, undefined);
{select, NewSelectInfo} ->
handler_loop(Sock, NewSelectInfo);
{error, Reason} ->
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({select, recv, Reason})
end
end;
{'$socket', Sock, abort, {SelectHandle, Reason}} ->
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({select, abort, Reason})
end
end;
%% This is the (asyncronous) behaviour on platforms that support 'completion',
%% currently only Windows.
handler_loop(Sock, {completion_info, recv, CompletionHandle}) ->
receive
{'$socket', Sock, completion, {CompletionHandle, CompletionStatus}} ->
case CompletionStatus of
{ok, Data} ->
echo(Sock, Data),
handler_loop(Sock, undefined);
{error, Reason} ->
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({completion, Reason})
end
end;
{'$socket', Sock, abort, {CompletionHandle, Reason}} ->
case Reason of
closed ->
exit(normal);
_ ->
erlang:error({abort, Reason})
end
end.
echo(Sock, Data) when is_binary(Data) ->
ok = socket:send(Sock, Data, infinity),
io:format("** ECHO **"
"~n~s~n", [binary_to_list(Data)]).
%% ======================================================================
%% === Utility functions ===
maybe_bind(Sock, Family) ->
maybe_bind(Sock, Family, os:type()).
maybe_bind(Sock, Family, {win32, _}) ->
Addr = get_local_addr(Family),
SockAddr = #{family => Family,
addr => Addr,
port => 0},
socket:bind(Sock, SockAddr);
maybe_bind(_Sock, _Family, _OS) ->
ok.
%% The idea with this is extract a "usable" local address
%% that can be used even from *another* host. And doing
%% so using the net module.
get_local_addr(Family) ->
Filter =
fun(#{addr := #{family := Fam},
flags := Flags}) ->
(Fam =:= Family) andalso
lists:member(up, Flags) andalso
lists:member(running, Flags) andalso
(not lists:member(loopback, Flags));
(_) ->
false
end,
{ok, [SockAddr|_]} = net:getifaddrs(Filter),
#{addr := #{addr := Addr}} = SockAddr,
Addr.
which_family(Addr) when is_tuple(Addr) andalso (tuple_size(Addr) =:= 4) ->
inet;
which_family(Addr) when is_tuple(Addr) andalso (tuple_size(Addr) =:= 8) ->
inet6.
```
[](){: #socket_options }
## Socket Options
Options for level `otp`:
| _Option Name_ | _Value Type_ | _Set_ | _Get_ | _Other Requirements and comments_ |
| ------------------- | ------------------------------------------------------------- | ----- | ----- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| assoc_id | integer() | no | yes | type = seqpacket, protocol = sctp, is an association |
| debug | boolean() | yes | yes | none |
| iow | boolean() | yes | yes | none |
| controlling_process | pid() | yes | yes | none |
| rcvbuf | default \| pos_integer() \| \{pos_integer(), pos_ineteger()\} | yes | yes | The tuple format is _not_ allowed on Windows. 'default' only valid for set. The tuple form is only valid for type 'stream' and protocol 'tcp'. |
| rcvctrlbuf | default \| pos_integer() | yes | yes | default only valid for set |
| sndctrlbuf | default \| pos_integer() | yes | yes | default only valid for set |
| fd | integer() | no | yes | none |
| use_registry | boolean() | no | yes | the value is set when the socket is created, by a call to [`open/2`](`socket:open/2`) or [`open/4`](`socket:open/4`). |
_Table: option levels_
Options for level `socket`:
| _Option Name_ | _Value Type_ | _Set_ | _Get_ | _Other Requirements and comments_ |
| ---------------- | ----------------- | ----- | ----- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| acceptconn | boolean() | no | yes | none |
| bindtodevice | string() | yes | yes | Before Linux 3.8, this socket option could be set, but not get. Only works for some socket types (e.g. `inet`). If empty value is set, the binding is removed. |
| broadcast | boolean() | yes | yes | type = dgram |
| bsp_state | map() | no | yes | Windows only |
| debug | integer() | yes | yes | may require admin capability |
| domain | domain() | no | yes | _Not_ on FreeBSD (for instance) |
| dontroute | boolean() | yes | yes | none |
| exclusiveaddruse | boolean() | yes | yes | Windows only |
| keepalive | boolean() | yes | yes | none |
| linger | abort \| linger() | yes | yes | none |
| maxdg | integer() | no | yes | Windows only |
| max_msg_size | integer() | no | yes | Windows only |
| oobinline | boolean() | yes | yes | none |
| peek_off | integer() | yes | yes | domain = local (unix). Currently disabled due to a possible infinite loop when calling recv(\[peek]) the second time. |
| priority | integer() | yes | yes | none |
| protocol | protocol() | no | yes | _Not_ on (some) Darwin (for instance) |
| rcvbuf | non_neg_integer() | yes | yes | none |
| rcvlowat | non_neg_integer() | yes | yes | none |
| rcvtimeo | timeval() | yes | yes | This option is not normally supported (see why below). OTP has to be explicitly built with the `--enable-esock-rcvsndtime` configure option for this to be available. Since our implementation is _nonblocking_, its unknown if and how this option works, or even if it may cause malfunctions. Therefore, we do not recommend setting this option. Instead, use the `Timeout` argument to, for instance, the [`recv/3`](`socket:recv/3`) function. |
| reuseaddr | boolean() | yes | yes | none |
| reuseport | boolean() | yes | yes | domain = inet \| inet6 |
| sndbuf | non_neg_integer() | yes | yes | none |
| sndlowat | non_neg_integer() | yes | yes | not changeable on Linux |
| sndtimeo | timeval() | yes | yes | This option is not normally supported (see why below). OTP has to be explicitly built with the `--enable-esock-rcvsndtime` configure option for this to be available. Since our implementation is _nonblocking_, its unknown if and how this option works, or even if it may cause malfunctions. Therefore, we do not recommend setting this option. Instead, use the `Timeout` argument to, for instance, the [`send/3`](`socket:send/3`) function. |
| timestamp | boolean() | yes | yes | none |
| type | type() | no | yes | none |
_Table: socket options_
Options for level `ip`:
| _Option Name_ | _Value Type_ | _Set_ | _Get_ | _Other Requirements and comments_ |
| ---------------------- | --------------------- | ----- | ----- | ---------------------------------------------------------- |
| add_membership | ip_mreq() | yes | no | none |
| add_source_membership | ip_mreq_source() | yes | no | none |
| block_source | ip_mreq_source() | yes | no | none |
| drop_membership | ip_mreq() | yes | no | none |
| drop_source_membership | ip_mreq_source() | yes | no | none |
| freebind | boolean() | yes | yes | none |
| hdrincl | boolean() | yes | yes | type = raw |
| minttl | integer() | yes | yes | type = raw |
| msfilter | null \| ip_msfilter() | yes | no | none |
| mtu | integer() | no | yes | type = raw |
| mtu_discover | ip_pmtudisc() | yes | yes | none |
| multicast_all | boolean() | yes | yes | none |
| multicast_if | any \| ip4_address() | yes | yes | none |
| multicast_loop | boolean() | yes | yes | none |
| multicast_ttl | uint8() | yes | yes | none |
| nodefrag | boolean() | yes | yes | type = raw |
| pktinfo | boolean() | yes | yes | type = dgram |
| recvdstaddr | boolean() | yes | yes | type = dgram |
| recverr | boolean() | yes | yes | none |
| recvif | boolean() | yes | yes | type = dgram \| raw |
| recvopts | boolean() | yes | yes | type =/= stream |
| recvorigdstaddr | boolean() | yes | yes | none |
| recvttl | boolean() | yes | yes | type =/= stream |
| retopts | boolean() | yes | yes | type =/= stream |
| router_alert | integer() | yes | yes | type = raw |
| sendsrcaddr | boolean() | yes | yes | none |
| tos | ip_tos() | yes | yes | some high-priority levels may require superuser capability |
| transparent | boolean() | yes | yes | requires admin capability |
| ttl | integer() | yes | yes | none |
| unblock_source | ip_mreq_source() | yes | no | none |
_Table: ip options_
Options for level `ipv6`:
| _Option Name_ | _Value Type_ | _Set_ | _Get_ | _Other Requirements and comments_ |
| ---------------------- | ------------------ | ----- | ----- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| addrform | inet | yes | no | allowed only for IPv6 sockets that are connected and bound to a v4-mapped-on-v6 address |
| add_membership | ipv6_mreq() | yes | no | none |
| authhdr | boolean() | yes | yes | type = dgram \| raw, obsolete? |
| drop_membership | ipv6_mreq() | yes | no | none |
| dstopts | boolean() | yes | yes | type = dgram \| raw, requires superuser privileges to update |
| flowinfo | boolean() | yes | yes | type = dgram \| raw, requires superuser privileges to update |
| hoplimit | boolean() | yes | yes | type = dgram \| raw. On some platforms (e.g. FreeBSD) is used to set in order to get `hoplimit` as a control message heeader. On others (e.g. Linux), `recvhoplimit` is set in order to get `hoplimit`. |
| hopopts | boolean() | yes | yes | type = dgram \| raw, requires superuser privileges to update |
| mtu | boolean() | yes | yes | Get: Only after the socket has been connected |
| mtu_discover | ipv6_pmtudisc() | yes | yes | none |
| multicast_hops | default \| uint8() | yes | yes | none |
| multicast_if | integer() | yes | yes | type = dgram \| raw |
| multicast_loop | boolean() | yes | yes | none |
| recverr | boolean() | yes | yes | none |
| recvhoplimit | boolean() | yes | yes | type = dgram \| raw. On some platforms (e.g. Linux), `recvhoplimit` is set in order to get `hoplimit` |
| recvpktinfo \| pktinfo | boolean() | yes | yes | type = dgram \| raw. On some platforms (e.g. FreeBSD) is used to set in order to get `hoplimit` as a control message heeader. On others (e.g. Linux), `recvhoplimit` is set in order to get `hoplimit`. |
| recvtclass | boolean() | yes | yes | type = dgram \| raw. On some platforms is used to set (=true) in order to get the `tclass` control message heeader. On others, `tclass` is set in order to get `tclass` control message heeader. |
| router_alert | integer() | yes | yes | type = raw |
| rthdr | boolean() | yes | yes | type = dgram \| raw, requires superuser privileges to update |
| tclass | integer() | yes | yes | Set the traffic class associated with outgoing packets. RFC3542. |
| unicast_hops | default \| uint8() | yes | yes | none |
| v6only | boolean() | yes | no | none |
_Table: ipv6 options_
Options for level `tcp`:
| _Option Name_ | _Value Type_ | _Set_ | _Get_ | _Other Requirements and comments_ |
| ------------- | ------------ | ----- | ----- | -------------------------------------------------------------------------------------------------------- |
| congestion | string() | yes | yes | none |
| cork | boolean() | yes | yes | 'nopush' one some platforms (FreeBSD) |
| keepcnt | integer() | yes | yes | On Windows (at least), it is illegal to set to a value greater than 255. |
| keepidle | integer() | yes | yes | none |
| keepintvl | integer() | yes | yes | none |
| maxseg | integer() | yes | yes | Set not allowed on all platforms. |
| nodelay | boolean() | yes | yes | none |
| nopush | boolean() | yes | yes | 'cork' on some platforms (Linux). On Darwin this has a different meaning than on, for instance, FreeBSD. |
_Table: tcp options_
Options for level `udp`:
| _Option Name_ | _Value Type_ | _Set_ | _Get_ | _Other Requirements and comments_ |
| ------------- | ------------ | ----- | ----- | --------------------------------- |
| cork | boolean() | yes | yes | none |
_Table: udp options_
Options for level `sctp`:
| _Option Name_ | _Value Type_ | _Set_ | _Get_ | _Other Requirements and comments_ |
| ----------------- | ---------------------- | ----- | ----- | --------------------------------- |
| associnfo | sctp_assocparams() | yes | yes | none |
| autoclose | non_neg_integer() | yes | yes | none |
| disable_fragments | boolean() | yes | yes | none |
| events | sctp_event_subscribe() | yes | no | none |
| initmsg | sctp_initmsg() | yes | yes | none |
| maxseg | non_neg_integer() | yes | yes | none |
| nodelay | boolean() | yes | yes | none |
| rtoinfo | sctp_rtoinfo() | yes | yes | none |
_Table: sctp options_
|