aboutsummaryrefslogtreecommitdiff
path: root/NEW
diff options
context:
space:
mode:
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.