aboutsummaryrefslogtreecommitdiff
path: root/doc/tcp.html
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2022-03-22 19:24:38 +0100
committerGitHub <noreply@github.com>2022-03-22 21:24:38 +0300
commitc1eacfa6d24dc15476f5f9befa8370e2244931d4 (patch)
tree38424b6a6002f0e1ec5b7776232226575e66b6ce /doc/tcp.html
parentf97dc8489d58aef2d038288f9a8bc69f907e17bb (diff)
downloadluasocket-c1eacfa6d24dc15476f5f9befa8370e2244931d4.tar.gz
luasocket-c1eacfa6d24dc15476f5f9befa8370e2244931d4.tar.bz2
luasocket-c1eacfa6d24dc15476f5f9befa8370e2244931d4.zip
fix(docs) references to some constants added (#359)
Diffstat (limited to 'doc/tcp.html')
-rw-r--r--doc/tcp.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/tcp.html b/doc/tcp.html
index 2d6e327..9cc173e 100644
--- a/doc/tcp.html
+++ b/doc/tcp.html
@@ -209,7 +209,9 @@ Returns the underling socket descriptor or handle associated to the object.
209</p> 209</p>
210 210
211<p class="return"> 211<p class="return">
212The descriptor or handle. In case the object has been closed, the return will be -1. 212The descriptor or handle. In case the object has been closed, the return value
213will be -1. For an invalid socket it will be <a href="socket.html#socketinvalid">
214<tt>_SOCKETINVALID</tt></a>.
213</p> 215</p>
214 216
215<p class="note"> 217<p class="note">
@@ -611,7 +613,9 @@ server:<b>setfd(</b>fd<b>)</b>
611</p> 613</p>
612 614
613<p class="description"> 615<p class="description">
614Sets the underling socket descriptor or handle associated to the object. The current one is simply replaced, not closed, and no other change to the object state is made. 616Sets the underling socket descriptor or handle associated to the object. The current one
617is simply replaced, not closed, and no other change to the object state is made.
618To set it as invalid use <a href="socket.html#socketinvalid"><tt>_SOCKETINVALID</tt></a>.
615</p> 619</p>
616 620
617<p class="return"> 621<p class="return">