Skip to content
Snippets Groups Projects
Commit 3671341d authored by rswindell's avatar rswindell
Browse files

More comments, added (currently empty) [udp] section, changed bool-type values

to "true".
parent 09fff6cb
Branches
Tags
No related merge requests found
...@@ -3,9 +3,11 @@ ...@@ -3,9 +3,11 @@
; Socket option configuration file ; Socket option configuration file
; Syntax: option = value ; Syntax: option = value
; where value is either a number, "true", or "false"
; Supported options: ; Supported options:
; TYPE
; TYPE <- Dangerous
; DEBUG ; DEBUG
; LINGER ; LINGER
; SNDBUF ; SNDBUF
...@@ -15,20 +17,25 @@ ...@@ -15,20 +17,25 @@
; SNDTIMEO ; SNDTIMEO
; RCVTIMEO ; RCVTIMEO
; REUSEADDR ; REUSEADDR
; KEEPALIVE <- TCP only ; KEEPALIVE <- TCP only
; DONTROUTE ; DONTROUTE
; BROADCAST ; BROADCAST
; OOBINLINE ; OOBINLINE
; TCP_NODELAY ; TCP_NODELAY <- TCP only
; On some Unix platforms, additional TCP_* options are supported ; On some Unix platforms, additional TCP_* options are supported
; LINGER = 5 ; Global socket options set here, in root section
SNDBUF = 8192 SNDBUF = 8192
RCVBUF = 8192 RCVBUF = 8192
; TCP-specific options set here
[tcp] [tcp]
KEEPALIVE = 1 KEEPALIVE = TRUE
; UDP-specific options set here
[udp]
; Per server/protocol options set here
[bbs] [bbs]
TCP_NODELAY = 1 TCP_NODELAY = TRUE
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment