Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | refactor(core): Replace check for SO_BINDTODEVICE support with platform ↵ | leso-kn | 2023-10-27 | 1 | -2/+2 |
| | | | | independent version | ||||
* | fix(core): Disable SO_BINDTODEVICE on windows | leso-kn | 2023-10-27 | 1 | -2/+2 |
| | | | | Co-authored-by: Sewbacca <sebastian.kalus@kolabnow.com> | ||||
* | feat(tcp): Add 'bindtodevice' option (#408) | Leso_KN | 2023-10-23 | 1 | -0/+27 |
| | |||||
* | style(core) Remove lingering c-style comment (#388) | George Zhao | 2022-08-27 | 1 | -1/+1 |
| | |||||
* | feat(tcp): Add support for TCP Defer Accept | Kim Alvefur | 2022-07-27 | 1 | -0/+9 |
| | | | | | | | | This makes it so that a listening socket does not become readable for accept() until a connection has been fully established *and* started sending something, thus the program doesn't have to wait for the first data. This only makes sense for client-speaks-first protocols. Co-authored-by: Caleb Maclennan <caleb@alerque.com> | ||||
* | feat(tcp): Add support for TCP Fast Open | Kim Alvefur | 2022-07-27 | 1 | -0/+16 |
| | |||||
* | style: Use C-style comment syntax throughout (#309) | Caleb Maclennan | 2022-03-18 | 1 | -22/+23 |
| | | | Co-authored-by: Denise Cullassnekuff <19711487+BlackCutpoint@users.noreply.github.com> | ||||
* | options: pragma visibility | E. Westbrook | 2019-03-10 | 1 | -63/+89 |
| | |||||
* | options.c: use LUASOCKET_PRIVATE | E. Westbrook | 2019-02-25 | 1 | -48/+46 |
| | |||||
* | Merge pull request #244 from leyyer/options | Diego Nehab | 2019-02-24 | 1 | -0/+20 |
|\ | | | | | add options: | ||||
| * | add options: | surenyi | 2018-03-25 | 1 | -0/+20 |
| | | | | | | | | | | | | | | get/set : recv-buffer-size get/set : send-buffer-size Signed-off-by: surenyi <surenyi82@163.com> | ||||
* | | Merge pull request #116 from linuxmaniac/master | Diego Nehab | 2019-02-24 | 1 | -0/+36 |
|\ \ | |/ |/| | Add "tcp-keepidle", "tcp-keepcnt" and "tcp-keepintvl" options | ||||
| * | Add "tcp-keepidle", "tcp-keepcnt" and "tcp-keepintvl" options | Victor Seva | 2014-12-05 | 1 | -0/+36 |
| | | |||||
* | | src/options.c: increase buffer from 45 to 57, to accommodate string sizes ↵ | E. Westbrook | 2017-12-22 | 1 | -2/+2 |
| | | | | | | | | specified (detected by gcc7's -Wstringpop-overflow) | ||||
* | | Merge pull request #141 from cjtallman/master | Diego Nehab | 2015-08-21 | 1 | -0/+10 |
|\ \ | | | | | | | Added missing options for UDP getoption. | ||||
| * | | Added missing options for UDP getoption. | cjtallman | 2015-06-11 | 1 | -0/+10 |
| |/ | | | | | | | | | | | 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 Nehab | 2015-08-21 | 1 | -23/+23 |
|/ | | | | Makes initialization code simpler everywhere. | ||||
* | No need for inet_pton. | Diego Nehab | 2013-06-04 | 1 | -8/+0 |
| | |||||
* | Remove warnings. Move windows specific code. | unknown | 2013-05-30 | 1 | -21/+7 |
| | |||||
* | Leaving if in src/ but out of build for now. | Diego Nehab | 2013-05-30 | 1 | -12/+123 |
| | |||||
* | Add. Allow get `error` option to socket. | moteus | 2013-05-29 | 1 | -0/+13 |
| | |||||
* | Making progress toward a release | Diego Nehab | 2012-04-23 | 1 | -2/+0 |
| | | | | | | | | | | Documented headers.lua Update copyright date everywhere Remove RCSID from files Move version back to 2.1 rather than 2.1.1 Fixed url package to support ipv6 hosts Changed "domain" to "family" in tcp and udp structures Implemented getfamily methods | ||||
* | merged lua_typerrror.{c,h} into auxiliar.{c,h} | Diego Nehab | 2012-04-16 | 1 | -3/+2 |
| | |||||
* | Merge branch 'git-sam' into diego-sam-mwild-integration | Sam Roberts | 2012-04-11 | 1 | -6/+54 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts in options.c were just due to independent small functions being close to each other. unix.c in mwild was broken, it wasn't using LUASOCKET_API. serial.c needed luaL_reg renamed, and to use LUASOCKET_API. makefile didn't respect standard DESTDIR and prefix makefile variables, and didn't allow LUAV variable to select lua version to build against. I've tested the top-level install-both target builds and installs against both lua5.1 and lua5.2, but not done further testing. Conflicts: README config gem/ltn012.tex makefile src/makefile src/options.c src/options.h src/tcp.c src/usocket.c | ||||
| * | Support getoption method for tcp objects. | Sam Roberts | 2012-04-11 | 1 | -0/+70 |
| | | |||||
* | | Compiles with Lua 5.1.4 and Lua 5.2.0-beta, although the makefile needs ↵ | Liam Devine | 2012-04-11 | 1 | -2/+3 |
| | | | | | | | | sorting out to take maybe a version number and also the local paths need removing. | ||||
* | | Add support for the IPV6_V6ONLY socket option defaulting to on. | Florian Zeitz | 2012-04-11 | 1 | -0/+5 |
| | | |||||
* | | Preliminary IPv6 support for v2.1 | Diego Nehab | 2012-04-11 | 1 | -1/+1 |
| | | |||||
* | | Decent makefiles! | Diego Nehab | 2009-05-27 | 1 | -12/+74 |
|/ | |||||
* | Changed prefix of function names to match module names. | Diego Nehab | 2005-11-20 | 1 | -2/+2 |
| | | | | Removed some warnings and useless code. | ||||
* | Before compiling on Windows. | Diego Nehab | 2005-10-07 | 1 | -18/+18 |
| | |||||
* | Almost ready to release. | Diego Nehab | 2005-09-29 | 1 | -1/+2 |
| | |||||
* | Fixed smtp.lua loading. | Diego Nehab | 2004-06-16 | 1 | -0/+10 |
| | | | | | Adjusted tftp module. Added some comments. | ||||
* | Adjusted wsocket to match usocket. Adjusted windows projects. | Diego Nehab | 2004-01-21 | 1 | -0/+1 |
| | |||||
* | Fixed functions that return messages in ?socket.c. | Diego Nehab | 2004-01-21 | 1 | -0/+137 |
Moved complexity of connect and accept there. Created a new options.c module to take care of options. Auxiliar.c is now cleaner. |