diff options
author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2005-06-14 04:29:23 +0000 |
---|---|---|
committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2005-06-14 04:29:23 +0000 |
commit | 65c35845c54c7f84b1cf5b0e3d4c7bbdaf1014e3 (patch) | |
tree | f6e3f1a31451281ac2a347c3080e9749456dac29 /FIX | |
parent | 8b114f3bf4ccea3b065551fa94649a9e45935b5b (diff) | |
download | luasocket-65c35845c54c7f84b1cf5b0e3d4c7bbdaf1014e3.tar.gz luasocket-65c35845c54c7f84b1cf5b0e3d4c7bbdaf1014e3.tar.bz2 luasocket-65c35845c54c7f84b1cf5b0e3d4c7bbdaf1014e3.zip |
Working on the manual.
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 | ||