luasocket/FIX

18 lines
1.0 KiB
Plaintext
Raw Normal View History

2005-02-27 19:30:32 +01:00
url.absolute was not working when base_url was already parsed
2005-06-14 06:29:23 +02:00
http.request was redirecting even when the location header was empty
2005-01-27 22:30:01 +01:00
tcp{client}:shutdown() was checking for group instead of class.
tcp{client}:send() now returns i+sent-1...
2005-06-14 06:29:23 +02:00
get rid of a = socket.try() in the manual, except for protected cases. replace it with assert.
get rid of "base." kludge in package.loaded
2005-02-08 11:01:01 +01:00
check all "require("http")" etc in the manual.
make sure sock_gethostname.* only return success if the hp is not null!
2005-06-14 06:29:23 +02:00
change 'l' prefix in C libraries to 'c' to avoid clash with LHF libraries
2005-02-08 11:01:01 +01:00
don't forget the declarations in luasocket.h and mime.h!!!
2005-04-14 00:18:21 +02:00
setpeername was using udp{unconnected}
2005-06-14 06:29:23 +02:00
fixed a bug in http.lua that caused some requests to fail (Florian Berger)
fixed a bug in select.c that prevented sockets with descriptor 0 from working (Renato Maia)
fixed a "bug" that caused dns.toip to crash under uLinux
fixed a "bug" that caused a crash in gethostbyname under VMS
DEBUG and VERSION became _DEBUG and _VERSION
send returns the right value if input is "". Alexander Marinov