diff options
author | limeboy <that.lemon+tcl@gmai.com> | 2016-11-24 20:28:42 (GMT) |
---|---|---|
committer | limeboy <that.lemon+tcl@gmai.com> | 2016-11-24 20:28:42 (GMT) |
commit | 07020d6350987f39307fa3f60dd7d3414edb04ef (patch) | |
tree | f45f79d644a58cffefc4a89d2063d26d6d2536b9 /doc/socket.n | |
parent | 15b2687d3cc301f3e63f0f9953948cf2a258b883 (diff) | |
download | tcl-07020d6350987f39307fa3f60dd7d3414edb04ef.zip tcl-07020d6350987f39307fa3f60dd7d3414edb04ef.tar.gz tcl-07020d6350987f39307fa3f60dd7d3414edb04ef.tar.bz2 |
First round of documentation update.
Diffstat (limited to 'doc/socket.n')
-rw-r--r-- | doc/socket.n | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/socket.n b/doc/socket.n index 3efdb37..3d77bab 100644 --- a/doc/socket.n +++ b/doc/socket.n @@ -131,6 +131,16 @@ wildcard address so that it can accept connections from any interface. If \fIaddr\fR is a domain name that resolves to multiple IP addresses that are available on the local machine, the socket will listen on all of them. +.TP +\fB\-reuseaddr\fI boolean\fR +. +Tells the kernel whether to reuse the local address if there's no active socket +listening on it. This is the default on Windows. +.TP +\fB\-reuseport\fI boolean\fR +. +Tells the kernel whether to allow the binding of multiple sockets to the same +socket address. This is the default on Windows. .PP Server channels cannot be used for input or output; their sole use is to accept new client connections. The channels created for each incoming |