aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Don't swallow errors in finalizers.Philipp Janda2016-02-241-1/+1
|
* Update comment in except.hPhilipp Janda2016-02-211-9/+14
|
* 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-111-2/+28
|\ | | | | Added Solaris platform
| * Added solaris platformJonas Kunze2016-01-151-2/+28
| | | | | | | | To compile on solaris some libs had to be linked. So far I was only able to test it on OmniOS r151006
* | 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-032-4/+4
|
* Changed buffer-per-socket to buffer-per-operation.Diego Nehab2015-10-063-34/+31
| | | | | | | | 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-052-23/+40
| | | | | The maximum size is still constant per UDP object, but the size can be speficied at creation time.
* Merge branch 'tcp_reuseport' of https://github.com/KateAdams/luasocket into ↵Diego Nehab2015-10-053-21/+19
|\ | | | | | | 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-258-205/+177
|\ \ | | | | | | | | | Seems safe to move to master.
| * | Fixes suggested by @Florob in #147.Diego Nehab2015-08-254-69/+54
| | |
| * | New agnostic IPv4 IPv6 functions.Diego Nehab2015-08-228-152/+139
| | | | | | | | | | | | | | | 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
| | |
| * | Generate headers before proxy changes host and portCharles Tabor2014-03-211-3/+3
| |/
* | Fix rockspec and serial.c module.Diego Nehab2015-08-212-17/+1
| |
* | Merge pull request #141 from cjtallman/masterDiego Nehab2015-08-213-1/+16
|\ \ | | | | | | Added missing options for UDP getoption.
| * | Added missing options for UDP getoption.cjtallman2015-06-113-1/+16
| | | | | | | | | | | | | | | | | | Documentation says "dontroute", "broadcast", "reuseaddr", and "reuseport" are supported as arguments to getoption, however their implementations were missing.
* | | New compat.h module implements luaL_setfuncs.Diego Nehab2015-08-2119-172/+163
|/ / | | | | | | Makes initialization code simpler everywhere.
* | Fix cut-paste typo on PIE_HOST_NOT_FOUND.Diego Nehab2015-03-031-30/+30
| |
* | Merge branch 'errormsg' of https://github.com/Tieske/luasocket into ↵Diego Nehab2015-03-033-51/+78
|\ \ | | | | | | | | | Tieske-errormsg
| * | updated error messages, less error prone, platform independentThijs Schreijer2015-03-033-51/+78
| | |
* | | Merge pull request #119 from gatzka/masterDiego Nehab2015-03-033-12/+13
|\ \ \ | | | | | | | | Make casts const correct.
| * | | Remove unused function luaL_typerror().Stephan Gatzka2014-12-211-8/+0
| | | |
| * | | Add missing prototype for opt_get_reuseport().Stephan Gatzka2014-12-211-1/+2
| | | |
| * | | Make local function udp_strerror() static.Stephan Gatzka2014-12-211-1/+1
| | | |
| * | | Make casts const correct.Stephan Gatzka2014-12-211-10/+10
| | | |
* | | | Better solution to luaL_checkint...Diego Nehab2015-03-012-12/+2
| | | |
* | | | fixed accidental global in `ftp.lua`Thijs Schreijer2015-03-011-1/+1
| |/ / |/| |
* | | Fix inet_global_getaddrinfo leak of getnameinfoDiego Nehab2015-02-181-0/+1
| | | | | | | | | | | | Issue #127 closed.
* | | Out of the box support for Lua 5.3.Diego Nehab2015-02-183-63/+64
|/ /
* | make socket.protect yieldable on Lua 5.2/5.3Philipp Janda2014-11-101-5/+30
| |
* | src/usocket: Don't unset/set O_NONBLOCK around listen() or shutdown() calls.daurnimator2014-10-271-4/+0
| | | | | | | | | | It doesn't effect them. Not true on windows
* | src/usocket: Do not setblocking on destroy;daurnimator2014-10-271-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
* | Fix Host: header according to RFC7230Diego Nehab2014-07-151-3/+2
|/
* Add MYCFLAGS and MYLDFLAGS go allow for customizationDiego Nehab2013-09-091-6/+11
|
* Add support for FreeBSD in makefileDiego Nehab2013-09-091-0/+29
| | | | Thanks to Leryan. See issue #78.
* Fixed timeout bug introduced by commit e81a6ffDiego Nehab2013-09-091-8/+4
|
* Merge pull request #74 from catwell/pull-hostportDiego Nehab2013-09-091-1/+3
|\ | | | | Include port in default Host header
| * include port in default Host headerPierre Chapuis2013-08-141-1/+3
| | | | | | See RFC 2616 section 14.23.
* | Merge pull request #65 from fab13n/480a818bf0ef6de32527ba14fc2bb27e754d0612Diego Nehab2013-09-091-3/+10
|\ \ | |/ |/| Support for several filters in ltn12.{sink,source}.chain
| * support multiple filters in ltn12.{sink,source}.chain()Fabien Fleutot2013-06-181-3/+10
| |
* | http: look for PROXY in _M, not as a globalPierre Chapuis2013-07-051-2/+2
| |
* | http: do not set global TIMEOUTPierre Chapuis2013-07-051-1/+1
|/