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