aboutsummaryrefslogtreecommitdiff
path: root/NEW
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2003-05-25 01:54:13 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2003-05-25 01:54:13 +0000
commit0f6c8d50a99997ac7829864b1c93362b50f1bbf3 (patch)
treed0cefe3a05484e65b7b7e79d8cae4a1d2e6d19fb /NEW
parentc1ef3e7103cc652d2004ef1ddc9409b946207f33 (diff)
downloadluasocket-0f6c8d50a99997ac7829864b1c93362b50f1bbf3.tar.gz
luasocket-0f6c8d50a99997ac7829864b1c93362b50f1bbf3.tar.bz2
luasocket-0f6c8d50a99997ac7829864b1c93362b50f1bbf3.zip
Porting to LUA 5.0 final
Diffstat (limited to 'NEW')
-rw-r--r--NEW25
1 files changed, 20 insertions, 5 deletions
diff --git a/NEW b/NEW
index 749641a..879f12c 100644
--- a/NEW
+++ b/NEW
@@ -1,5 +1,20 @@
1Socket structures are independent 1All functions provided by the library are in the namespace "socket".
2UDPBUFFERSIZE is now internal 2Functions such as send/receive/timeout/close etc do not exist in the
3Better treatment of closed connections: test!!! 3namespace. They are now only available as methods of the appropriate
4HTTP post now deals with 1xx codes 4objects.
5connect, bind etc only try first address returned by resolver 5
6Object has been changed to become more uniform. First create an object for
7a given domain/family and protocol. Then connect or bind if needed. Then
8use IO functions.
9
10All functions return a non-nil value as first return value if successful.
11All functions return nil followed by error message in case of error.
12WARNING: The send function was affected.
13
14Better error messages and parameter checking.
15
16UDP connected udp sockets can break association with peer by calling
17setpeername with address "*".
18
19socket.sleep and socket.time are now part of the library and are
20supported.