aboutsummaryrefslogtreecommitdiff
path: root/doc/tcp.html
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2004-06-20 22:19:54 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2004-06-20 22:19:54 +0000
commitf7579db9e830ef41f422a280d26c9077f48728e5 (patch)
treed96affac7f5e8203d2e9c4a053213a992cd76650 /doc/tcp.html
parent5dc5c3ebe8f111bba01762ca0f5edba912c4f0b9 (diff)
downloadluasocket-f7579db9e830ef41f422a280d26c9077f48728e5.tar.gz
luasocket-f7579db9e830ef41f422a280d26c9077f48728e5.tar.bz2
luasocket-f7579db9e830ef41f422a280d26c9077f48728e5.zip
Fixing bugs...
Diffstat (limited to 'doc/tcp.html')
-rw-r--r--doc/tcp.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tcp.html b/doc/tcp.html
index cd417a5..37b0b56 100644
--- a/doc/tcp.html
+++ b/doc/tcp.html
@@ -16,7 +16,7 @@
16<center> 16<center>
17<table summary="LuaSocket logo"> 17<table summary="LuaSocket logo">
18<tr><td align=center><a href="http://www.lua.org"> 18<tr><td align=center><a href="http://www.lua.org">
19<img border=0 alt="LuaSocket" src="luasocket.png"> 19<img width=128 border=0 alt="LuaSocket" src="luasocket.png">
20</a></td></tr> 20</a></td></tr>
21<tr><td align=center valign=top>Network support for the Lua language 21<tr><td align=center valign=top>Network support for the Lua language
22</td></tr> 22</td></tr>
@@ -74,7 +74,7 @@ reported by <b><tt>nil</tt></b> followed by a message describing the error.
74</p> 74</p>
75 75
76<p class=note> 76<p class=note>
77Note: calling <a href=misc.html#socket.select><tt>socket.select</tt></a> 77Note: calling <a href=sockett.html#select><tt>socket.select</tt></a>
78with a server object in 78with a server object in
79the <tt>receive</tt> parameter before a call to <tt>accept</tt> does 79the <tt>receive</tt> parameter before a call to <tt>accept</tt> does
80<em>not</em> guarantee <tt>accept</tt> will return immediately. Use the <a 80<em>not</em> guarantee <tt>accept</tt> will return immediately. Use the <a
@@ -94,7 +94,7 @@ local host.
94 94
95<p class=parameters> 95<p class=parameters>
96<tt>Address</tt> can be an IP address or a host name. 96<tt>Address</tt> can be an IP address or a host name.
97<tt>Port</tt> must be an integer number in the range [0..64K]. 97<tt>Port</tt> must be an integer number in the range [0..64K).
98If <tt>address</tt> 98If <tt>address</tt>
99is '<tt>*</tt>', the system binds to all local interfaces 99is '<tt>*</tt>', the system binds to all local interfaces
100using the <tt>INADDR_ANY</tt> constant. If <tt>port</tt> is 0, the system automatically 100using the <tt>INADDR_ANY</tt> constant. If <tt>port</tt> is 0, the system automatically
@@ -154,7 +154,7 @@ and <a href=#close><tt>close</tt></a>.
154 154
155<p class=parameters> 155<p class=parameters>
156<tt>Address</tt> can be an IP address or a host name. 156<tt>Address</tt> can be an IP address or a host name.
157<tt>Port</tt> must be an integer number in the range [1..64K]. 157<tt>Port</tt> must be an integer number in the range [1..64K).
158</p> 158</p>
159 159
160<p class=return> 160<p class=return>