diff options
Diffstat (limited to 'doc/udp.html')
-rw-r--r-- | doc/udp.html | 578 |
1 files changed, 0 insertions, 578 deletions
diff --git a/doc/udp.html b/doc/udp.html deleted file mode 100644 index a300f2f..0000000 --- a/doc/udp.html +++ /dev/null | |||
@@ -1,578 +0,0 @@ | |||
1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | ||
2 | "http://www.w3.org/TR/html4/strict.dtd"> | ||
3 | <html> | ||
4 | |||
5 | <head> | ||
6 | <meta name="description" content="LuaSocket: The UDP support"> | ||
7 | <meta name="keywords" content="Lua, LuaSocket, Socket, UDP, Library, Network, Support"> | ||
8 | <title>LuaSocket: UDP support</title> | ||
9 | <link rel="stylesheet" href="reference.css" type="text/css"> | ||
10 | </head> | ||
11 | |||
12 | <body> | ||
13 | |||
14 | <!-- header ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
15 | |||
16 | <div class=header> | ||
17 | <hr> | ||
18 | <center> | ||
19 | <table summary="LuaSocket logo"> | ||
20 | <tr><td align=center><a href="http://www.lua.org"> | ||
21 | <img width=128 height=128 border=0 alt="LuaSocket" src="luasocket.png"> | ||
22 | </a></td></tr> | ||
23 | <tr><td align=center valign=top>Network support for the Lua language | ||
24 | </td></tr> | ||
25 | </table> | ||
26 | <p class=bar> | ||
27 | <a href="index.html">home</a> · | ||
28 | <a href="index.html#download">download</a> · | ||
29 | <a href="installation.html">installation</a> · | ||
30 | <a href="introduction.html">introduction</a> · | ||
31 | <a href="reference.html">reference</a> | ||
32 | </p> | ||
33 | </center> | ||
34 | <hr> | ||
35 | </div> | ||
36 | |||
37 | |||
38 | <!-- udp ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
39 | |||
40 | <h2 id="udp">UDP</h2> | ||
41 | |||
42 | <!-- socket.udp ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
43 | |||
44 | <p class="name" id="socket.udp"> | ||
45 | socket.<b>udp()</b> | ||
46 | </p> | ||
47 | |||
48 | <p class="description"> | ||
49 | Creates and returns an unconnected UDP object. | ||
50 | Unconnected objects support the | ||
51 | <a href="#sendto"><tt>sendto</tt></a>, | ||
52 | <a href="#receive"><tt>receive</tt></a>, | ||
53 | <a href="#receivefrom"><tt>receivefrom</tt></a>, | ||
54 | <a href="#getoption"><tt>getoption</tt></a>, | ||
55 | <a href="#getsockname"><tt>getsockname</tt></a>, | ||
56 | <a href="#setoption"><tt>setoption</tt></a>, | ||
57 | <a href="#settimeout"><tt>settimeout</tt></a>, | ||
58 | <a href="#setpeername"><tt>setpeername</tt></a>, | ||
59 | <a href="#setsockname"><tt>setsockname</tt></a>, and | ||
60 | <a href="#close"><tt>close</tt></a>. | ||
61 | The <a href="#setpeername"><tt>setpeername</tt></a> | ||
62 | is used to connect the object. | ||
63 | </p> | ||
64 | |||
65 | <p class="return"> | ||
66 | In case of success, a new unconnected UDP object | ||
67 | returned. In case of error, <b><tt>nil</tt></b> is returned, followed by | ||
68 | an error message. | ||
69 | </p> | ||
70 | |||
71 | <p class=note> | ||
72 | Note: The choice between IPv4 and IPv6 happens during a call to | ||
73 | <a href=#sendto><tt>sendto</tt></a>, <a | ||
74 | href=#setpeername><tt>setpeername</tt></a>, or <a | ||
75 | href=#setsockname><tt>sockname</tt></a>, depending on the address | ||
76 | family obtained from the resolver. | ||
77 | </p> | ||
78 | |||
79 | <p class=note> | ||
80 | Note: Before the choice between IPv4 and IPv6 happens, | ||
81 | the internal socket object is invalid and therefore <a | ||
82 | href=#setoption><tt>setoption</tt></a> will fail. | ||
83 | </p> | ||
84 | |||
85 | <!-- socket.udp4 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
86 | |||
87 | <p class="name" id="socket.udp"> | ||
88 | socket.<b>udp4()</b> | ||
89 | </p> | ||
90 | |||
91 | <p class="description"> | ||
92 | Creates and returns an unconnected IPv4 UDP object. | ||
93 | Unconnected objects support the | ||
94 | <a href="#sendto"><tt>sendto</tt></a>, | ||
95 | <a href="#receive"><tt>receive</tt></a>, | ||
96 | <a href="#receivefrom"><tt>receivefrom</tt></a>, | ||
97 | <a href="#getoption"><tt>getoption</tt></a>, | ||
98 | <a href="#getsockname"><tt>getsockname</tt></a>, | ||
99 | <a href="#setoption"><tt>setoption</tt></a>, | ||
100 | <a href="#settimeout"><tt>settimeout</tt></a>, | ||
101 | <a href="#setpeername"><tt>setpeername</tt></a>, | ||
102 | <a href="#setsockname"><tt>setsockname</tt></a>, and | ||
103 | <a href="#close"><tt>close</tt></a>. | ||
104 | The <a href="#setpeername"><tt>setpeername</tt></a> | ||
105 | is used to connect the object. | ||
106 | </p> | ||
107 | |||
108 | <p class="return"> | ||
109 | In case of success, a new unconnected UDP object | ||
110 | returned. In case of error, <b><tt>nil</tt></b> is returned, followed by | ||
111 | an error message. | ||
112 | </p> | ||
113 | |||
114 | <!-- socket.udp ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
115 | |||
116 | <p class="name" id="socket.udp6"> | ||
117 | socket.<b>udp6()</b> | ||
118 | </p> | ||
119 | |||
120 | <p class="description"> | ||
121 | Creates and returns an unconnected IPv6 UDP object. | ||
122 | Unconnected objects support the | ||
123 | <a href="#sendto"><tt>sendto</tt></a>, | ||
124 | <a href="#receive"><tt>receive</tt></a>, | ||
125 | <a href="#receivefrom"><tt>receivefrom</tt></a>, | ||
126 | <a href="#getoption"><tt>getoption</tt></a>, | ||
127 | <a href="#getsockname"><tt>getsockname</tt></a>, | ||
128 | <a href="#setoption"><tt>setoption</tt></a>, | ||
129 | <a href="#settimeout"><tt>settimeout</tt></a>, | ||
130 | <a href="#setpeername"><tt>setpeername</tt></a>, | ||
131 | <a href="#setsockname"><tt>setsockname</tt></a>, and | ||
132 | <a href="#close"><tt>close</tt></a>. | ||
133 | The <a href="#setpeername"><tt>setpeername</tt></a> | ||
134 | is used to connect the object. | ||
135 | </p> | ||
136 | |||
137 | <p class="return"> | ||
138 | In case of success, a new unconnected UDP object | ||
139 | returned. In case of error, <b><tt>nil</tt></b> is returned, followed by | ||
140 | an error message. | ||
141 | </p> | ||
142 | |||
143 | <p class=note> | ||
144 | Note: The TCP object returned will have the option | ||
145 | "<tt>ipv6-v6only</tt>" set to <tt><b>true</b></tt>. | ||
146 | </p> | ||
147 | |||
148 | <!-- close +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
149 | |||
150 | <p class="name" id="close"> | ||
151 | connected:<b>close()</b><br> | ||
152 | unconnected:<b>close()</b> | ||
153 | </p> | ||
154 | |||
155 | <p class="description"> | ||
156 | Closes a UDP object. The internal socket | ||
157 | used by the object is closed and the local address to which the | ||
158 | object was bound is made available to other applications. No | ||
159 | further operations (except for further calls to the <tt>close</tt> | ||
160 | method) are allowed on a closed socket. | ||
161 | </p> | ||
162 | |||
163 | <p class="note"> | ||
164 | Note: It is important to close all used sockets | ||
165 | once they are not needed, since, in many systems, each socket uses | ||
166 | a file descriptor, which are limited system resources. | ||
167 | Garbage-collected objects are automatically closed before | ||
168 | destruction, though. | ||
169 | </p> | ||
170 | |||
171 | <!-- getpeername +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
172 | |||
173 | <p class="name" id="getpeername"> | ||
174 | connected:<b>getpeername()</b> | ||
175 | </p> | ||
176 | |||
177 | <p class="description"> | ||
178 | Retrieves information about the peer | ||
179 | associated with a connected UDP object. | ||
180 | </p> | ||
181 | |||
182 | |||
183 | <p class=return> | ||
184 | Returns a string with the IP address of the peer, the | ||
185 | port number that peer is using for the connection, | ||
186 | and a string with the family ("<tt>inet</tt>" or "<tt>inet6</tt>"). | ||
187 | In case of error, the method returns <b><tt>nil</tt></b>. | ||
188 | </p> | ||
189 | |||
190 | <p class="note"> | ||
191 | Note: It makes no sense to call this method on unconnected objects. | ||
192 | </p> | ||
193 | |||
194 | <!-- getsockname +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
195 | |||
196 | <p class="name" id="getsockname"> | ||
197 | connected:<b>getsockname()</b><br> | ||
198 | unconnected:<b>getsockname()</b> | ||
199 | </p> | ||
200 | |||
201 | <p class="description"> | ||
202 | Returns the local address information associated to the object. | ||
203 | </p> | ||
204 | |||
205 | |||
206 | <p class=return> | ||
207 | The method returns a string with local IP address, a number with | ||
208 | the local port, | ||
209 | and a string with the family ("<tt>inet</tt>" or "<tt>inet6</tt>"). | ||
210 | In case of error, the method returns <b><tt>nil</tt></b>. | ||
211 | </p> | ||
212 | |||
213 | <p class="note"> | ||
214 | Note: UDP sockets are not bound to any address | ||
215 | until the <a href="#setsockname"><tt>setsockname</tt></a> or the | ||
216 | <a href="#sendto"><tt>sendto</tt></a> method is called for the | ||
217 | first time (in which case it is bound to an ephemeral port and the | ||
218 | wild-card address). | ||
219 | </p> | ||
220 | |||
221 | <!-- receive +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
222 | |||
223 | <p class="name" id="receive"> | ||
224 | connected:<b>receive(</b>[size]<b>)</b><br> | ||
225 | unconnected:<b>receive(</b>[size]<b>)</b> | ||
226 | </p> | ||
227 | |||
228 | <p class="description"> | ||
229 | Receives a datagram from the UDP object. If | ||
230 | the UDP object is connected, only datagrams coming from the peer | ||
231 | are accepted. Otherwise, the returned datagram can come from any | ||
232 | host. | ||
233 | </p> | ||
234 | |||
235 | <p class="parameters"> | ||
236 | The optional <tt>size</tt> parameter | ||
237 | specifies the maximum size of the datagram to be retrieved. If | ||
238 | there are more than <tt>size</tt> bytes available in the datagram, | ||
239 | the excess bytes are discarded. If there are less then | ||
240 | <tt>size</tt> bytes available in the current datagram, the | ||
241 | available bytes are returned. If <tt>size</tt> is omitted, the | ||
242 | maximum datagram size is used (which is currently limited by the | ||
243 | implementation to 8192 bytes). | ||
244 | </p> | ||
245 | |||
246 | <p class="return"> | ||
247 | In case of success, the method returns the | ||
248 | received datagram. In case of timeout, the method returns | ||
249 | <b><tt>nil</tt></b> followed by the string '<tt>timeout</tt>'. | ||
250 | </p> | ||
251 | |||
252 | <!-- receivefrom +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
253 | |||
254 | <p class="name" id="receivefrom"> | ||
255 | unconnected:<b>receivefrom(</b>[size]<b>)</b> | ||
256 | </p> | ||
257 | |||
258 | <p class="description"> | ||
259 | Works exactly as the <a href="#receive"><tt>receive</tt></a> | ||
260 | method, except it returns the IP | ||
261 | address and port as extra return values (and is therefore slightly less | ||
262 | efficient). | ||
263 | </p> | ||
264 | |||
265 | <!-- getoption +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
266 | |||
267 | <p class="name" id="getoption"> | ||
268 | connected:<b>getoption()</b><br> | ||
269 | unconnected:<b>getoption()</b> | ||
270 | </p> | ||
271 | |||
272 | <p class="description"> | ||
273 | Gets an option value from the UDP object. | ||
274 | See <a href=#setoption><tt>setoption</tt></a> for | ||
275 | description of the option names and values. | ||
276 | </p> | ||
277 | |||
278 | <p class="parameters"><tt>Option</tt> is a string with the option name. | ||
279 | <ul> | ||
280 | <li> '<tt>dontroute</tt>' | ||
281 | <li> '<tt>broadcast</tt>' | ||
282 | <li> '<tt>reuseaddr</tt>' | ||
283 | <li> '<tt>reuseport</tt>' | ||
284 | <li> '<tt>ip-multicast-loop</tt>' | ||
285 | <li> '<tt>ipv6-v6only</tt>' | ||
286 | <li> '<tt>ip-multicast-if</tt>' | ||
287 | <li> '<tt>ip-multicast-ttl</tt>' | ||
288 | <li> '<tt>ip-add-membership</tt>' | ||
289 | <li> '<tt>ip-drop-membership</tt>' | ||
290 | </ul> | ||
291 | </p> | ||
292 | |||
293 | <p class=return> | ||
294 | The method returns the option <tt>value</tt> in case of | ||
295 | success, or | ||
296 | <b><tt>nil</tt></b> followed by an error message otherwise. | ||
297 | </p> | ||
298 | |||
299 | <!-- send ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
300 | |||
301 | <p class="name" id="send"> | ||
302 | connected:<b>send(</b>datagram<b>)</b> | ||
303 | </p> | ||
304 | |||
305 | <p class="description"> | ||
306 | Sends a datagram to the UDP peer of a connected object. | ||
307 | </p> | ||
308 | |||
309 | <p class="parameters"> | ||
310 | <tt>Datagram</tt> is a string with the datagram contents. | ||
311 | The maximum datagram size for UDP is 64K minus IP layer overhead. | ||
312 | However datagrams larger than the link layer packet size will be | ||
313 | fragmented, which may deteriorate performance and/or reliability. | ||
314 | </p> | ||
315 | |||
316 | <p class="return"> | ||
317 | If successful, the method returns 1. In case of | ||
318 | error, the method returns <b><tt>nil</tt></b> followed by an error message. | ||
319 | </p> | ||
320 | |||
321 | <p class="note"> | ||
322 | Note: In UDP, the <tt>send</tt> method never blocks | ||
323 | and the only way it can fail is if the underlying transport layer | ||
324 | refuses to send a message to the specified address (i.e. no | ||
325 | interface accepts the address). | ||
326 | </p> | ||
327 | |||
328 | <!-- sendto ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
329 | |||
330 | <p class="name" id="sendto"> | ||
331 | unconnected:<b>sendto(</b>datagram, ip, port<b>)</b> | ||
332 | </p> | ||
333 | |||
334 | <p class="description"> | ||
335 | Sends a datagram to the specified IP address and port number. | ||
336 | </p> | ||
337 | |||
338 | <p class="parameters"> | ||
339 | <tt>Datagram</tt> is a string with the | ||
340 | datagram contents. | ||
341 | The maximum datagram size for UDP is 64K minus IP layer overhead. | ||
342 | However datagrams larger than the link layer packet size will be | ||
343 | fragmented, which may deteriorate performance and/or reliability. | ||
344 | <tt>Ip</tt> is the IP address of the recipient. | ||
345 | Host names are <em>not</em> allowed for performance reasons. | ||
346 | |||
347 | <tt>Port</tt> is the port number at the recipient. | ||
348 | </p> | ||
349 | |||
350 | <p class="return"> | ||
351 | If successful, the method returns 1. In case of | ||
352 | error, the method returns <b><tt>nil</tt></b> followed by an error message. | ||
353 | </p> | ||
354 | |||
355 | <p class="note"> | ||
356 | Note: In UDP, the <tt>send</tt> method never blocks | ||
357 | and the only way it can fail is if the underlying transport layer | ||
358 | refuses to send a message to the specified address (i.e. no | ||
359 | interface accepts the address). | ||
360 | </p> | ||
361 | |||
362 | <!-- setpeername +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
363 | |||
364 | <p class="name" id="setpeername"> | ||
365 | connected:<b>setpeername(</b>'*'<b>)</b><br> | ||
366 | unconnected:<b>setpeername(</b>address, port<b>)</b> | ||
367 | </p> | ||
368 | |||
369 | <p class="description"> | ||
370 | Changes the peer of a UDP object. This | ||
371 | method turns an unconnected UDP object into a connected UDP | ||
372 | object or vice versa. | ||
373 | </p> | ||
374 | |||
375 | <p class="description"> | ||
376 | For connected objects, outgoing datagrams | ||
377 | will be sent to the specified peer, and datagrams received from | ||
378 | other peers will be discarded by the OS. Connected UDP objects must | ||
379 | use the <a href="#send"><tt>send</tt></a> and | ||
380 | <a href="#receive"><tt>receive</tt></a> methods instead of | ||
381 | <a href="#sendto"><tt>sendto</tt></a> and | ||
382 | <a href="#receivefrom"><tt>receivefrom</tt></a>. | ||
383 | </p> | ||
384 | |||
385 | <p class="parameters"> | ||
386 | <tt>Address</tt> can be an IP address or a | ||
387 | host name. <tt>Port</tt> is the port number. If <tt>address</tt> is | ||
388 | '<tt>*</tt>' and the object is connected, the peer association is | ||
389 | removed and the object becomes an unconnected object again. In that | ||
390 | case, the <tt>port</tt> argument is ignored. | ||
391 | </p> | ||
392 | |||
393 | <p class="return"> | ||
394 | In case of error the method returns | ||
395 | <b><tt>nil</tt></b> followed by an error message. In case of success, the | ||
396 | method returns 1. | ||
397 | </p> | ||
398 | |||
399 | <p class="note"> | ||
400 | Note: Since the address of the peer does not have | ||
401 | to be passed to and from the OS, the use of connected UDP objects | ||
402 | is recommended when the same peer is used for several transmissions | ||
403 | and can result in up to 30% performance gains. | ||
404 | </p> | ||
405 | |||
406 | <p class=note> | ||
407 | Note: Starting with LuaSocket 3.0, the host name resolution | ||
408 | depends on whether the socket was created by <a | ||
409 | href=#socket.udp><tt>socket.udp</tt></a> or <a | ||
410 | href=#socket.udp6><tt>socket.udp6</tt></a>. Addresses from | ||
411 | the appropriate family are tried in succession until the | ||
412 | first success or until the last failure. | ||
413 | </p> | ||
414 | |||
415 | <!-- setsockname +++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
416 | |||
417 | <p class="name" id="setsockname"> | ||
418 | unconnected:<b>setsockname(</b>address, port<b>)</b> | ||
419 | </p> | ||
420 | |||
421 | <p class="description"> | ||
422 | Binds the UDP object to a local address. | ||
423 | </p> | ||
424 | |||
425 | <p class="parameters"> | ||
426 | <tt>Address</tt> can be an IP address or a | ||
427 | host name. If <tt>address</tt> is '<tt>*</tt>' the system binds to | ||
428 | all local interfaces using the constant <tt>INADDR_ANY</tt>. If | ||
429 | <tt>port</tt> is 0, the system chooses an ephemeral port. | ||
430 | </p> | ||
431 | |||
432 | <p class="return"> | ||
433 | If successful, the method returns 1. In case of | ||
434 | error, the method returns <b><tt>nil</tt></b> followed by an error | ||
435 | message. | ||
436 | </p> | ||
437 | |||
438 | <p class="note"> | ||
439 | Note: This method can only be called before any | ||
440 | datagram is sent through the UDP object, and only once. Otherwise, | ||
441 | the system automatically binds the object to all local interfaces | ||
442 | and chooses an ephemeral port as soon as the first datagram is | ||
443 | sent. After the local address is set, either automatically by the | ||
444 | system or explicitly by <tt>setsockname</tt>, it cannot be | ||
445 | changed. | ||
446 | </p> | ||
447 | |||
448 | <!-- setoption +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
449 | |||
450 | <p class="name" id="setoption"> | ||
451 | connected:<b>setoption(</b>option [, value]<b>)</b><br> | ||
452 | unconnected:<b>setoption(</b>option [, value]<b>)</b> | ||
453 | </p> | ||
454 | |||
455 | <p class="description"> | ||
456 | Sets options for the UDP object. Options are | ||
457 | only needed by low-level or time-critical applications. You should | ||
458 | only modify an option if you are sure you need it.</p> | ||
459 | <p class="parameters"><tt>Option</tt> is a string with the option | ||
460 | name, and <tt>value</tt> depends on the option being set: | ||
461 | </p> | ||
462 | |||
463 | <ul> | ||
464 | <li> '<tt>dontroute</tt>': Indicates that outgoing | ||
465 | messages should bypass the standard routing facilities. | ||
466 | Receives a boolean value; | ||
467 | <li> '<tt>broadcast</tt>': Requests permission to send | ||
468 | broadcast datagrams on the socket. | ||
469 | Receives a boolean value; | ||
470 | <li> '<tt>reuseaddr</tt>': Indicates that the rules used in | ||
471 | validating addresses supplied in a <tt>bind()</tt> call | ||
472 | should allow reuse of local addresses. | ||
473 | Receives a boolean value; | ||
474 | <li> '<tt>reuseport</tt>': Allows completely duplicate | ||
475 | bindings by multiple processes if they all set | ||
476 | '<tt>reuseport</tt>' before binding the port. | ||
477 | Receives a boolean value; | ||
478 | <li> '<tt>ip-multicast-loop</tt>': | ||
479 | Specifies whether or not a copy of an outgoing multicast | ||
480 | datagram is delivered to the sending host as long as it is a | ||
481 | member of the multicast group. | ||
482 | Receives a boolean value; | ||
483 | <li> '<tt>ipv6-v6only</tt>': | ||
484 | Specifies whether to restrict <tt>inet6</tt> sockets to | ||
485 | sending and receiving only IPv6 packets. | ||
486 | Receive a boolean value; | ||
487 | <li> '<tt>ip-multicast-if</tt>': | ||
488 | Sets the interface over which outgoing multicast datagrams | ||
489 | are sent. | ||
490 | Receives an IP address; | ||
491 | <li> '<tt>ip-multicast-ttl</tt>': | ||
492 | Sets the Time To Live in the IP header for outgoing | ||
493 | multicast datagrams. | ||
494 | Receives a number; | ||
495 | <li> '<tt>ip-add-membership</tt>': | ||
496 | Joins the multicast group specified. | ||
497 | Receives a table with fields | ||
498 | <tt>multiaddr</tt> and <tt>interface</tt>, each containing an | ||
499 | IP address; | ||
500 | <li> '<tt>ip-drop-membership</tt>': Leaves the multicast | ||
501 | group specified. | ||
502 | Receives a table with fields | ||
503 | <tt>multiaddr</tt> and <tt>interface</tt>, each containing an | ||
504 | IP address. | ||
505 | </ul> | ||
506 | |||
507 | <p class="return"> | ||
508 | The method returns 1 in case of success, or | ||
509 | <b><tt>nil</tt></b> followed by an error message otherwise. | ||
510 | </p> | ||
511 | |||
512 | <p class=note> | ||
513 | Note: The descriptions above come from the man pages. | ||
514 | </p> | ||
515 | |||
516 | <!-- settimeout +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
517 | |||
518 | <p class="name" id="settimeout"> | ||
519 | connected:<b>settimeout(</b>value<b>)</b><br> | ||
520 | unconnected:<b>settimeout(</b>value<b>)</b> | ||
521 | </p> | ||
522 | |||
523 | <p class="description"> | ||
524 | Changes the timeout values for the object. By default, the | ||
525 | <a href="#receive"><tt>receive</tt></a> and | ||
526 | <a href="#receivefrom"><tt>receivefrom</tt></a> | ||
527 | operations are blocking. That is, any call to the methods will block | ||
528 | indefinitely, until data arrives. The <tt>settimeout</tt> function defines | ||
529 | a limit on the amount of time the functions can block. When a timeout is | ||
530 | set and the specified amount of time has elapsed, the affected methods | ||
531 | give up and fail with an error code. | ||
532 | </p> | ||
533 | |||
534 | <p class="parameters"> | ||
535 | The amount of time to wait is specified as | ||
536 | the <tt>value</tt> parameter, in seconds. The <b><tt>nil</tt></b> timeout | ||
537 | <tt>value</tt> allows operations to block indefinitely. Negative | ||
538 | timeout values have the same effect. | ||
539 | </p> | ||
540 | |||
541 | <p class="note"> | ||
542 | Note: In UDP, the <a href="#send"><tt>send</tt></a> | ||
543 | and <a href="#sentdo"><tt>sendto</tt></a> methods never block (the | ||
544 | datagram is just passed to the OS and the call returns | ||
545 | immediately). Therefore, the <tt>settimeout</tt> method has no | ||
546 | effect on them. | ||
547 | </p> | ||
548 | |||
549 | <p class="note"> | ||
550 | Note: The old <tt>timeout</tt> method is | ||
551 | deprecated. The name has been changed for sake of uniformity, since | ||
552 | all other method names already contained verbs making their | ||
553 | imperative nature obvious. | ||
554 | </p> | ||
555 | |||
556 | <!-- footer ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ --> | ||
557 | |||
558 | <div class=footer> | ||
559 | <hr> | ||
560 | <center> | ||
561 | <p class=bar> | ||
562 | <a href="index.html">home</a> · | ||
563 | <a href="index.html#download">download</a> · | ||
564 | <a href="installation.html">installation</a> · | ||
565 | <a href="introduction.html">introduction</a> · | ||
566 | <a href="reference.html">reference</a> | ||
567 | </p> | ||
568 | <p> | ||
569 | <small> | ||
570 | Last modified by Diego Nehab on <br> | ||
571 | Thu Apr 20 00:26:01 EDT 2006 | ||
572 | </small> | ||
573 | </p> | ||
574 | </center> | ||
575 | </div> | ||
576 | |||
577 | </body> | ||
578 | </html> | ||