Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-02-18 | Fix inet_global_getaddrinfo leak of getnameinfo | Diego Nehab | 1 | -0/+1 | |
Issue #127 closed. | |||||
2015-02-18 | Out of the box support for Lua 5.3. | Diego Nehab | 7 | -85/+96 | |
2014-11-10 | make socket.protect yieldable on Lua 5.2/5.3 | Philipp Janda | 1 | -5/+30 | |
2014-11-10 | fixed yieldable socket.protect in etc/dispatch.lua | Philipp Janda | 1 | -15/+22 | |
2014-10-27 | src/usocket: Don't unset/set O_NONBLOCK around listen() or shutdown() calls. | daurnimator | 1 | -4/+0 | |
It doesn't effect them. Not true on windows | |||||
2014-10-27 | src/usocket: Do not setblocking on destroy; | daurnimator | 1 | -1/+0 | |
This results in unexpected behaviour if the socket has been `dup()`d, as O_NONBLOCK is shared. Close is always 'blocking' anyway See https://github.com/wahern/cqueues/issues/13 for an example use case | |||||
2014-07-15 | Fix Host: header according to RFC7230 | Diego Nehab | 1 | -3/+2 | |
2013-09-09 | Add MYCFLAGS and MYLDFLAGS go allow for customization | Diego Nehab | 1 | -6/+11 | |
2013-09-09 | Add support for FreeBSD in makefile | Diego Nehab | 2 | -1/+30 | |
Thanks to Leryan. See issue #78. | |||||
2013-09-09 | Fixed timeout bug introduced by commit e81a6ff | Diego Nehab | 1 | -8/+4 | |
2013-08-14 | include port in default Host header | Pierre Chapuis | 1 | -1/+3 | |
See RFC 2616 section 14.23. | |||||
2013-07-05 | http: look for PROXY in _M, not as a global | Pierre Chapuis | 1 | -2/+2 | |
2013-07-05 | http: do not set global TIMEOUT | Pierre Chapuis | 1 | -1/+1 | |
2013-06-18 | support multiple filters in ltn12.{sink,source}.chain() | Fabien Fleutot | 2 | -3/+35 | |
2013-06-14 | Change link to github page.v3.0-rc1 | Diego Nehab | 1 | -2/+2 | |
2013-06-14 | Add files to distribution. | Diego Nehab | 1 | -4/+5 | |
2013-06-14 | Change 2.1 to 3.0 | Diego Nehab | 1 | -2/+2 | |
2013-06-14 | Change 2.1 to 3.0-rc1 | Diego Nehab | 2 | -1/+2 | |
2013-06-14 | Update NEW file and section | Diego Nehab | 3 | -39/+68 | |
2013-06-13 | Download archive with https rather than git scheme | Diego Nehab | 1 | -2/+2 | |
2013-06-13 | Fix version in rockspec. | Diego Nehab | 1 | -1/+1 | |
2013-06-13 | Fix path for rockspec in travis file. | Diego Nehab | 1 | -2/+2 | |
2013-06-13 | Merging moteus suggestions for rockspec and travis | Diego Nehab | 2 | -4/+57 | |
2013-06-12 | Fix makefile and test_socket_error.lua | Diego Nehab | 3 | -4/+12 | |
2013-06-11 | new rockspec using builtin build type | Fabio Mascarenhas | 2 | -67/+105 | |
2013-06-11 | Changing from 2.1-rc1 to 3.0-rc1. | Diego Nehab | 10 | -34/+33 | |
2013-06-11 | Fix unix export marker. | Diego Nehab | 2 | -1/+7 | |
2013-06-05 | Export global table only if "module()" is defined. | Diego Nehab | 2 | -21/+24 | |
2013-06-04 | No need for inet_pton. | Diego Nehab | 3 | -39/+3 | |
2013-05-30 | Unix domain tests still broken. | Diego Nehab | 2 | -12/+12 | |
2013-05-30 | Remove warnings. Move windows specific code. | unknown | 5 | -31/+40 | |
2013-05-30 | Leaving if in src/ but out of build for now. | Diego Nehab | 8 | -196/+265 | |
2013-05-30 | Fix. recive 2xx while ftp.get cause timeout error | moteus | 1 | -1/+5 | |
In this example: >Client send: MDTM test.txt >Server response: 213 20120824120909 Because FTP server do not open new channel (2XX response) and LuaSocket try open new channel we get timeout. ```lua local ftp = require "socket.ftp" local ltn12 = require "ltn12" local url = require("socket.url") local URL = "ftp://USER:TEST@127.0.0.1"; local CMD = 'MDTM test.txt'; -- get timeout ftp.get{ url = URL; command = CMD; sink = ltn12.sink.table{}; } -- or we can use ftp.command ftp.command{ url = URL; command = URL, check = function(...) local status, data = ... return true end; } ``` | |||||
2013-05-29 | Add. Allow get `error` option to socket. | moteus | 5 | -0/+43 | |
2013-05-29 | Change VC12 project to no LUA_COMPAT_MODUULE | unknown | 2 | -8/+8 | |
2013-05-29 | Export global only if LUA_COMPAT_MODULE defined. | Diego Nehab | 11 | -37/+55 | |
2013-05-28 | Fix "final" bug in pton and TCP connreset handling | unknown | 2 | -19/+27 | |
2013-05-28 | Typo fixed. | Diego Nehab | 1 | -1/+1 | |
2013-05-28 | Fixed inet_pton and a new Winsock UDP bug. | unknown | 4 | -69/+84 | |
inet_pton was copying the entire sockaddr_in struct, rather than just the sin_addr field... I am a bit unsure about the UDP fix, because it may affect TCP as well. On UDP sockets, when a sendto fails, the next receive/receivefrom fails with CONNRESET. I changed sock_recv/sock_recvfrom in wsocket.c to skip the CONNRESET from the recv/recvfrom, hoping that if the socket is TCP, sock_waitfd will get the CONNRESET again. The tests pass, but this should be tested more thoroughly. | |||||
2013-05-27 | Fix wrong usage of inet_pton. | unknown | 1 | -2/+2 | |
2013-05-27 | Link only against ws2_32.lib. | unknown | 2 | -7/+7 | |
2013-05-27 | Simplifying getaddrinfo treatment. | Diego Nehab | 1 | -32/+18 | |
2013-05-27 | Fix Visual Studio 2012 projects | unknown | 10 | -56/+316 | |
2013-05-27 | Fix. use table.unpack in mimetest on Lua 5.2. | moteus | 1 | -0/+2 | |
2013-05-27 | Build with Lua 5.2 without LUA_COMPAT_MODULE flag. | moteus | 14 | -115/+179 | |
LUASOCKET_USE_GLOBAL flag enable create global variables when load socket/mime modules. | |||||
2013-05-27 | Fix. Optional IPv6 test | moteus | 1 | -2/+8 | |
2013-05-27 | Fix. setsockname fails with "*" as host. | moteus | 3 | -1/+9 | |
Add. test_bind.lua | |||||
2013-05-27 | Fix. getaddrinfo returns garbage as address on Windows. | moteus | 2 | -3/+33 | |
Add. test_getaddrinfo.lua | |||||
2013-05-26 | No need for build script: makefile target instead. | Diego Nehab | 1 | -9/+0 | |
2013-05-26 | Merge tryconnect6 into inet_tryconnect. | Diego Nehab | 4 | -16/+29 | |