Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2018-08-22 | Revert "url.lua:absolute_path(): fix issue #254"revert-256-luasocket254 | Diego Nehab | 1 | -39/+5 | |
2018-08-21 | url.lua:remove_dot_components(): avoid ambiguous numeric representation as ↵ | E. Westbrook | 1 | -2/+3 | |
empty-path-segment marker | |||||
2018-08-21 | url.lua:remove_dot_components(): use temporary NUL marker to reduce ↵ | E. Westbrook | 2 | -2/+7 | |
empty-segment special-case code | |||||
2018-08-21 | url.lua:remove_dot_components(): empty path component double-dot corner case | E. Westbrook | 2 | -0/+5 | |
2018-08-21 | url.lua:absolute_path(): ensure a separator between base_path and relative_path | E. Westbrook | 2 | -1/+2 | |
2018-08-21 | url.lua:remove_dot_components(): avoid overconsuming dot segments | E. Westbrook | 2 | -2/+7 | |
2018-08-21 | url.lua:remove_dot_components(): limit beginning-of-string double-dot corner ↵ | E. Westbrook | 2 | -1/+2 | |
case to prevent triple-dot activation and authority collision | |||||
2018-08-21 | url.lua: separate remove_dot_components() from absolute_path(); also use in ↵ | E. Westbrook | 2 | -21/+38 | |
_M.absolute() even when not merging | |||||
2018-08-19 | url.lua:absolute_path(): fix issue #254, simplify, add more test cases | E. Westbrook | 2 | -15/+36 | |
2018-08-06 | Fix gcc-8.1.0 warning. | Joris Clement | 1 | -0/+1 | |
2018-06-05 | Add ltn12.source.table() | E. Westbrook | 4 | -1/+31 | |
2018-06-04 | src/compat.c: provide luaL_testudata() for use by auxiliar.c under Lua 5.1 | E. Westbrook | 2 | -0/+19 | |
2018-06-03 | Update auxiliar.c | George Zhao | 1 | -1/+1 | |
2017-12-22 | src/options.c: increase buffer from 45 to 57, to accommodate string sizes ↵ | E. Westbrook | 1 | -2/+2 | |
specified (detected by gcc7's -Wstringpop-overflow) | |||||
2017-11-22 | fixed url parsing; postpone fragment parsing after authority parsing; added ↵ | Herbert Leuwer | 2 | -8/+77 | |
test cases to test/urltest.lua fixed reference patterns in check_protect() to upper case hex letters | |||||
2017-11-19 | fixed URL parsing in url.lua: parse fragment after parsing username and ↵ | Herbert Leuwer | 1 | -5/+5 | |
password. | |||||
2017-04-17 | Fix typo | Elliptica | 1 | -1/+1 | |
2017-03-20 | Preserve path when parsing urls. | Diego Nehab | 2 | -3/+4 | |
2017-03-20 | Fix issue #196 | Diego Nehab | 1 | -0/+1 | |
2017-03-16 | correct typo | LordHelmchen | 1 | -1/+1 | |
2017-03-16 | fix for Lua 5.3 built without number / string conversion | François Perrad | 1 | -1/+1 | |
This kind of Lua could be built with this command: ``` hererocks --lua 5.3 --cflags="-DLUA_NOCVTN2S -DLUA_NOCVTS2N" ``` | |||||
2017-03-16 | make protect_segment in url.lua rfc compliant | LordHelmchen | 1 | -1/+1 | |
percent-encode uppercase see https://tools.ietf.org/html/rfc3986#section-6.2.2 | |||||
2017-01-25 | Add backwards compatibility wrappers for socket.unix | Courtney Bane | 1 | -5/+45 | |
Add backwards compatibility aliases "tcp" and "udp" for the recently renamed "stream" and "dgram" functions, as well as a wrapper function and metatable setup so that socket.unix() calls socket.unix.stream(). | |||||
2017-01-25 | Create socket on first sendto if family agnostic udp() was used | Natanael Copa | 1 | -0/+21 | |
Create socket and set family on first sendto() if udp() was created without address family. Signed-off-by: Natanael Copa <ncopa@alpinelinux.org> | |||||
2016-12-25 | rename unix.tcp to unix.stream, unix.udp to unix.dgram | enginix | 11 | -129/+129 | |
2016-11-08 | allow DESTDIR to be set from the environment | Mike Usenko | 1 | -1/+1 | |
2016-07-22 | add getsockname api for unix {udp,tcp} socket | enginix | 2 | -0/+36 | |
2016-07-04 | fix unixudp object checking issue | enginix | 1 | -2/+2 | |
2016-06-30 | unix socket: compat lua 5.1 | enginix | 3 | -2/+5 | |
2016-06-24 | support datagram unix domain sockets | enginix | 10 | -316/+803 | |