aboutsummaryrefslogtreecommitdiff
path: root/WISH (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-03-20Preserve path when parsing urls.Diego Nehab2-3/+4
2017-03-20Fix issue #196Diego Nehab1-0/+1
2017-03-16correct typoLordHelmchen1-1/+1
2017-03-16fix for Lua 5.3 built without number / string conversionFrançois Perrad1-1/+1
This kind of Lua could be built with this command: ``` hererocks --lua 5.3 --cflags="-DLUA_NOCVTN2S -DLUA_NOCVTS2N" ```
2017-03-16make protect_segment in url.lua rfc compliantLordHelmchen1-1/+1
percent-encode uppercase see https://tools.ietf.org/html/rfc3986#section-6.2.2
2017-01-25Add backwards compatibility wrappers for socket.unixCourtney Bane1-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-25Create socket on first sendto if family agnostic udp() was usedNatanael Copa1-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-25rename unix.tcp to unix.stream, unix.udp to unix.dgramenginix11-129/+129
2016-11-08allow DESTDIR to be set from the environmentMike Usenko1-1/+1
2016-07-22add getsockname api for unix {udp,tcp} socketenginix2-0/+36
2016-07-04fix unixudp object checking issueenginix1-2/+2
2016-06-30unix socket: compat lua 5.1enginix3-2/+5
2016-06-24support datagram unix domain socketsenginix10-316/+803