diff options
Diffstat (limited to 'FIX')
-rw-r--r-- | FIX | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -1,13 +1,16 @@ | |||
1 | url.absolute was not working when base_url was already parsed | 1 | url.absolute was not working when base_url was already parsed |
2 | http.request was redirecting even when the location header is empty | 2 | http.request was redirecting even when the location header was empty |
3 | tcp{client}:shutdown() was checking for group instead of class. | 3 | tcp{client}:shutdown() was checking for group instead of class. |
4 | tcp{client}:send() now returns i+sent-1... | 4 | tcp{client}:send() now returns i+sent-1... |
5 | get rid of a = socket.try() in the manual, except for protected cases. | 5 | get rid of a = socket.try() in the manual, except for protected cases. replace it with assert. |
6 | replace it with assert. | 6 | get rid of "base." kludge in package.loaded |
7 | get rid of "base." kludge | ||
8 | check all "require("http")" etc in the manual. | 7 | check all "require("http")" etc in the manual. |
9 | make sure sock_gethostname.* only return success if the hp is not null! | 8 | make sure sock_gethostname.* only return success if the hp is not null! |
10 | change 'l' prefix in C libraries to 'c' | 9 | change 'l' prefix in C libraries to 'c' to avoid clash with LHF libraries |
11 | don't forget the declarations in luasocket.h and mime.h!!! | 10 | don't forget the declarations in luasocket.h and mime.h!!! |
12 | setpeername was using udp{unconnected} | 11 | setpeername was using udp{unconnected} |
13 | fixed a bug in http.lua that caused some requests to fail | 12 | fixed a bug in http.lua that caused some requests to fail (Florian Berger) |
13 | fixed a bug in select.c that prevented sockets with descriptor 0 from working (Renato Maia) | ||
14 | fixed a "bug" that caused dns.toip to crash under uLinux | ||
15 | fixed a "bug" that caused a crash in gethostbyname under VMS | ||
16 | DEBUG and VERSION became _DEBUG and _VERSION | ||