aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* rename unix.tcp to unix.stream, unix.udp to unix.dgramenginix2016-12-2511-129/+129
|
* Merge pull request #192 from mmaxs/masterDiego Nehab2016-11-111-1/+1
|\ | | | | Allow DESTDIR to be set from the environment
| * allow DESTDIR to be set from the environmentMike Usenko2016-11-081-1/+1
|/
* Merge pull request #181 from enginix/masterDiego Nehab2016-07-2210-316/+842
|\ | | | | Add support for datagram unix domain sockets
| * add getsockname api for unix {udp,tcp} socketenginix2016-07-222-0/+36
| |
| * fix unixudp object checking issueenginix2016-07-041-2/+2
| |
| * unix socket: compat lua 5.1enginix2016-06-303-2/+5
| |
| * support datagram unix domain socketsenginix2016-06-2410-316/+803
|/
* Merge pull request #178 from pdxmeshnet/masterDiego Nehab2016-06-171-0/+105
|\ | | | | Add rockspec to current development version.
| * Added future release rockspec fileAlex R2016-06-151-0/+105
|/
* Merge pull request #167 from xspager/add_haiku_platDiego Nehab2016-04-121-1/+5
|\ | | | | Add the lib network to the linked libs if the platform is Haiku
| * Given LuaRocks support Haiku as a valid platform, link the network libraryDaniel Lemos2016-03-111-1/+5
| |
* | Merge pull request #171 from JonasKunze/feature/overwriteFlagsDiego Nehab2016-04-121-2/+4
|\ \ | | | | | | Enabled overwriting of MYCF/MYLDFlAGS
| * | Enabled overwriting of MYCF/MYLDFlAGSJonas Kunze2016-04-121-2/+4
| |/
* | Merge pull request #170 from bytefire/masterDiego Nehab2016-04-122-4/+5
|\ \ | |/ |/| URL-decode user password before adding to authorization header.
| * URL-decode user password before adding to authorization header.Okash Khawaja2016-04-121-1/+2
| |
| * Update comments for url.unescape() function.Okash Khawaja2016-04-121-3/+3
|/
* Hide ftp.PORT "constant" as a localDiego Nehab2016-03-072-3/+2
|
* Family agostic FTP and expose HTTP/FTP url parsingDiego Nehab2016-03-074-32/+96
|
* Remove global PORT. Fix https redirect.Diego Nehab2016-03-042-19/+30
|
* Added gettimeout for completeness.Diego Nehab2016-03-0410-519/+587
| | | | | Also documented. Rordered manuals so order is alphabetical.
* Added support for FTP command listsDiego Nehab2016-03-043-5/+19
|
* Merge pull request #166 from siffiejoe/exception-tweaksDiego Nehab2016-02-243-12/+14
|\ | | | | Exception tweaks
| * Clarify documentation for try/protect.Philipp Janda2016-02-241-4/+6
| |
| * Always put metatable in first upvalue.Philipp Janda2016-02-241-4/+6
| |
| * Don't swallow errors in finalizers.Philipp Janda2016-02-243-4/+2
|/
* Merge pull request #162 from siffiejoe/exception-metaDiego Nehab2016-02-234-42/+75
|\ | | | | Support table errors in LuaSockets LTN13 C implementation.
| * Update comment in except.hPhilipp Janda2016-02-211-9/+14
| |
| * Update HTML docs for try/protectmpeterv2016-02-211-10/+5
| |
| * Add more tests for socket.try/protectmpeterv2016-02-211-4/+29
| |
| * Support table errors.Philipp Janda2016-02-211-19/+27
|/ | | | | | | | | LuaSocket wraps error messages raised by newtry() in a table and unpacks them later so that (string) errors raised by 3rd-party code can be passed through as-is. This obviously didn't work when the 3rd-party code raised a table as an error message. This change sets a private metatable on all wrapped LuaSocket exceptions to distinguish them from 3rd-party table errors.
* Merge pull request #155 from JonasKunze/feature/solarisDiego Nehab2016-02-112-3/+29
|\ | | | | Added Solaris platform
| * Added solaris platformJonas Kunze2016-01-152-3/+29
| | | | | | | | To compile on solaris some libs had to be linked. So far I was only able to test it on OmniOS r151006
* | Merge pull request #157 from mpeterv/ltn12-lua53Diego Nehab2016-02-114-3/+5
|\ \ | |/ |/| Fix error in ltn12 under Lua 5.3
| * Don't break global mbox table in mbox.split_mboxmpeterv2016-02-111-1/+1
| |
| * Fix sink method in tp modulempeterv2016-02-111-1/+1
| |
| * Fix base_parsed global in url modulempeterv2016-02-111-0/+1
| |
| * Use base.select instead of just selectmpeterv2016-02-111-1/+1
| |
| * Fix error in ltn12 under Lua 5.3mpeterv2016-02-111-0/+1
|/
* When zero-timeout, only try first address in connect.Diego Nehab2015-12-033-9/+12
|
* Changed buffer-per-socket to buffer-per-operation.Diego Nehab2015-10-067-62/+64
| | | | | | | | This is a difficult tradeoff to measure. I think large datagrams won't be used very frequently. So it is better to not lock a large buffer to each socket object and instead allocate and deallocate for each operation receiving a datagram larger than UDP_DATAGRAMSIZE.
* Added support for arbitrary datagram sizes.Diego Nehab2015-10-053-29/+68
| | | | | The maximum size is still constant per UDP object, but the size can be speficied at creation time.
* Merge branch 'KateAdams-tcp_reuseport'Diego Nehab2015-10-055-34/+21
|\
| * Merge branch 'tcp_reuseport' of https://github.com/KateAdams/luasocket into ↵Diego Nehab2015-10-055-34/+21
|/| | | | | | | KateAdams-tcp_reuseport
| * Added ability to set the option `reuseport` of a tcp socket.kobra2013-09-122-1/+3
| |
* | Merge branch 'agnostic'Diego Nehab2015-08-2514-411/+460
|\ \ | | | | | | | | | Seems safe to move to master.
| * | Fixes suggested by @Florob in #147.Diego Nehab2015-08-257-76/+78
| | |
| * | New agnostic IPv4 IPv6 functions.Diego Nehab2015-08-2214-351/+398
| | | | | | | | | | | | | | | Also dealing with EPROTOTYPE Yosemite seems to be throwing at us for no reason.
* | | Merge pull request #96 from chastabor/masterDiego Nehab2015-08-241-2/+11
|\ \ \ | | | | | | | | Generate headers before proxy changes host and port
| * | | Add proxy authentication headers if present.Charles Tabor2014-03-271-0/+9
| | | |