diff options
Diffstat (limited to 'NEW')
-rw-r--r-- | NEW | 25 |
1 files changed, 20 insertions, 5 deletions
@@ -1,5 +1,20 @@ | |||
1 | Socket structures are independent | 1 | All functions provided by the library are in the namespace "socket". |
2 | UDPBUFFERSIZE is now internal | 2 | Functions such as send/receive/timeout/close etc do not exist in the |
3 | Better treatment of closed connections: test!!! | 3 | namespace. They are now only available as methods of the appropriate |
4 | HTTP post now deals with 1xx codes | 4 | objects. |
5 | connect, bind etc only try first address returned by resolver | 5 | |
6 | Object has been changed to become more uniform. First create an object for | ||
7 | a given domain/family and protocol. Then connect or bind if needed. Then | ||
8 | use IO functions. | ||
9 | |||
10 | All functions return a non-nil value as first return value if successful. | ||
11 | All functions return nil followed by error message in case of error. | ||
12 | WARNING: The send function was affected. | ||
13 | |||
14 | Better error messages and parameter checking. | ||
15 | |||
16 | UDP connected udp sockets can break association with peer by calling | ||
17 | setpeername with address "*". | ||
18 | |||
19 | socket.sleep and socket.time are now part of the library and are | ||
20 | supported. | ||