diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2022-08-24 12:31:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 12:31:18 +0200 |
commit | 87c48f3e4ddba13d9c014067e62568ba906cc410 (patch) | |
tree | c99889ec0b9bbab2bc5ee14cd9046d0a122eb226 /FIX | |
parent | 95b7efa9da506ef968c1347edf3fc56370f0deed (diff) | |
parent | 97d5194f302d3fb9fe27874d9b5f73004a208d01 (diff) | |
download | luasocket-87c48f3e4ddba13d9c014067e62568ba906cc410.tar.gz luasocket-87c48f3e4ddba13d9c014067e62568ba906cc410.tar.bz2 luasocket-87c48f3e4ddba13d9c014067e62568ba906cc410.zip |
Merge pull request #364 from lunarmodules/cleanup
Diffstat (limited to 'FIX')
-rw-r--r-- | FIX | 28 |
1 files changed, 0 insertions, 28 deletions
@@ -1,28 +0,0 @@ | |||
1 | |||
2 | |||
3 | |||
4 | |||
5 | |||
6 | |||
7 | http was preserving old host header during redirects | ||
8 | fix smtp.send hang on source error | ||
9 | add create field to FTP and SMTP and fix HTTP ugliness | ||
10 | clean timeout argument to open functions in SMTP, HTTP and FTP | ||
11 | eliminate globals from namespaces created by module(). | ||
12 | url.absolute was not working when base_url was already parsed | ||
13 | http.request was redirecting even when the location header was empty | ||
14 | tcp{client}:shutdown() was checking for group instead of class. | ||
15 | tcp{client}:send() now returns i+sent-1... | ||
16 | get rid of a = socket.try() in the manual, except for protected cases. replace it with assert. | ||
17 | get rid of "base." kludge in package.loaded | ||
18 | check all "require("http")" etc in the manual. | ||
19 | make sure sock_gethostname.* only return success if the hp is not null! | ||
20 | change 'l' prefix in C libraries to 'c' to avoid clash with LHF libraries | ||
21 | don't forget the declarations in luasocket.h and mime.h!!! | ||
22 | setpeername was using udp{unconnected} | ||
23 | fixed a bug in http.lua that caused some requests to fail (Florian Berger) | ||
24 | fixed a bug in select.c that prevented sockets with descriptor 0 from working (Renato Maia) | ||
25 | fixed a "bug" that caused dns.toip to crash under uLinux | ||
26 | fixed a "bug" that caused a crash in gethostbyname under VMS | ||
27 | DEBUG and VERSION became _DEBUG and _VERSION | ||
28 | send returns the right value if input is "". Alexander Marinov | ||