aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| | * mime: include reorgE. Westbrook2019-03-102-7/+2
| | |
| | * luasocket: include centralizationE. Westbrook2019-03-102-19/+4
| | |
| | * io: pragma visibilityE. Westbrook2019-03-102-8/+7
| | |
| | * inet: pragma visibilityE. Westbrook2019-03-102-31/+25
| | |
| | * except: pragma visibilityE. Westbrook2019-03-102-9/+7
| | |
| | * compat: pragma visibilityE. Westbrook2019-03-102-9/+14
| | |
| | * buffer: pragma visibilityE. Westbrook2019-03-102-16/+14
| | |
| | * auxiliar: pragma visibilityE. Westbrook2019-03-102-22/+20
| |/
| * Fix formatting.Diego Nehab2019-03-101-3/+3
| |
| * Use static initializationDiego Nehab2019-03-092-10/+145
| | | | | | | | This helps with multi-threaded apps.
| * Remove .filters and hardcoded platform.Diego Nehab2019-03-024-71/+2
| |
| * Update Windows projects vor Visual Studio 2017Diego Nehab2019-03-019-147/+106
| |
| * Merge pull request #272 from ewestbrook/pr268bugfixDiego Nehab2019-03-011-4/+2
| |\ | | | | | | bugfix: http.lua confict resolution omission
| | * bugfix: http.lua multischeme change that got dropped during PR conflict ↵E. Westbrook2019-02-281-4/+2
| |/ | | | | | | resolution
| * Merge pull request #243 from mojca/eai-undefinedDiego Nehab2019-02-262-1/+6
| |\ | | | | | | EAI_OVERFLOW, AI_NUMERICSERV: put behind #ifdef so this works on Mac OS X 10.4 and 10.5.
| | * Only use EAI_OVERFLOW, AI_NUMERICSERV if definedMojca Miklavec2019-02-262-1/+6
| |/ | | | | | | | | | | | | | | | | | | | | | | | | Some systems like Mac OS X 10.5 (and lower) do not have EAI_OVERFLOW and AI_NUMERICSERV defined. These variables are used to avoid a potentially slow name resolution for the hostname (which will always be an ip address) and for service name (which will always be an actual port number). The code might be slower, but it should still work. Closes: #242
| * Merge pull request #270 from ewestbrook/functionvisibilityDiego Nehab2019-02-2624-385/+455
| |\ | | | | | | Tag functions explicitly for shared library visibility
| | * rockspecs: remove visibility and dllexport defines in favor of in-source ↵E. Westbrook2019-02-252-177/+231
| | | | | | | | | | | | labeling
| | * src/makefile: remove visibility and dllexport defines in favor of in-source ↵E. Westbrook2019-02-251-27/+12
| | | | | | | | | | | | labeling
| | * usocket.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-24/+26
| | |
| | * usocket.c use LUASOCKET_PRIVATEE. Westbrook2019-02-251-28/+30
| | |
| | * unixstream.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-2/+4
| | |
| | * unixdgram.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-3/+6
| | |
| | * udp.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-3/+5
| | |
| | * timeout.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-15/+17
| | |
| | * tcp.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-3/+6
| | |
| | * serial.c: include luasocket.hE. Westbrook2019-02-251-0/+2
| | |
| | * select.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-2/+4
| | |
| | * options.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-48/+46
| | |
| | * io.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-2/+3
| | |
| | * inet.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-12/+14
| | |
| | * except.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-1/+3
| | |
| | * pragma.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-2/+3
| | |
| | * buffer.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-7/+9
| | |
| | * auxiliar.c: use LUASOCKET_PRIVATEE. Westbrook2019-02-251-13/+13
| | |
| | * unix.c: use LUASOCKET_APIE. Westbrook2019-02-251-1/+3
| | |
| | * mime.c: use LUASOCKET_APIE. Westbrook2019-02-251-1/+1
| | |
| | * unix.h: use LUASOCKET_APIE. Westbrook2019-02-251-5/+2
| | |
| | * mime.h: use LUASOCKET_APIE. Westbrook2019-02-251-8/+2
| | |
| | * luasocket.h: define LUASOCKET_API and LUASOCKET_PRIVATE for export visibilityE. Westbrook2019-02-251-1/+13
| |/
| * Merge pull request #268 from ewestbrook/prc-multischemeDiego Nehab2019-02-241-19/+41
| |\ | | | | | | Scheme-independent connection and redirection
| | * http.lua: Error informatively if insufficient LuaSec supportE. Westbrook2019-02-241-1/+5
| | |
| | * socket.http.request(): simultaneous support for http and https URL schemes, ↵E. Westbrook2019-02-241-19/+37
| |/ | | | | | | with caller-adjustable scheme-to-transport mappings (default "socket.http" and "ssl.https")
| * Merge pull request #224 from pdgendt/patch-2Diego Nehab2019-02-241-2/+1
| |\ | | | | | | mime.lua: Obsolete require("io")
| | * mime.lua: Obsolete require("io")Pieter De Gendt2017-09-041-2/+1
| | | | | | | | | The `io` package is included but never used.
| * | Merge pull request #246 from xyida/yodaDiego Nehab2019-02-241-2/+9
| |\ \ | | | | | | | | Fixed an issue that was mistaken for HTTP 0.9 when timeout
| | * | Fixed an issue that was mistaken for HTTP 0.9 when timeoutxyida2018-04-261-2/+9
| | | |
| * | | Merge pull request #244 from leyyer/optionsDiego Nehab2019-02-244-0/+32
| |\ \ \ | | | | | | | | | | add options:
| | * | | add options:surenyi2018-03-254-0/+32
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | get/set : recv-buffer-size get/set : send-buffer-size Signed-off-by: surenyi <surenyi82@163.com>
| * | | Merge pull request #116 from linuxmaniac/masterDiego Nehab2019-02-245-1/+81
| |\ \ \ | | | | | | | | | | Add "tcp-keepidle", "tcp-keepcnt" and "tcp-keepintvl" options