Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | net.server: Only add alternate SNI contexts if at least one is provided | Kim Alvefur | 2019-03-11 | 1 | -1/+1 | |
| | | | | | | | | Fixes use of <starttls/> when a client sends SNI, which would send no certificate otherwise. | |||||
* | | net.server_epoll: Add support for SNI (#409) | Kim Alvefur | 2019-03-10 | 1 | -0/+8 | |
| | | ||||||
* | | net.server: New API for creating server listeners | Kim Alvefur | 2018-09-13 | 1 | -4/+14 | |
| | | | | | | | | server.listen(interface, port, listeners, options); | |||||
* | | net.server_epoll: Increase send_timeout to 3 minutes (to match server_event) | Kim Alvefur | 2019-02-09 | 1 | -1/+1 | |
| | | | | | | | | The separate connect_timeout means we can afford a longer send_timeout | |||||
* | | net.server_epoll: Separate timeout for initial connection attempts | Kim Alvefur | 2019-02-09 | 1 | -1/+4 | |
| | | | | | | | | server_event has this separation already | |||||
* | | Merge 0.11->trunk | Kim Alvefur | 2019-02-09 | 1 | -5/+5 | |
|\| | ||||||
| * | net.server_epoll: Rename handshake_timeout to ssl_handshake_timeout (fixes ↵ | Kim Alvefur | 2019-02-09 | 1 | -3/+3 | |
| | | | | | | | | | | | | #1319) This is to match server_event, see 430797a8fc81 | |||||
| * | net.server_epoll: Use send_timeout for write timout like other ↵ | Kim Alvefur | 2019-02-07 | 1 | -2/+2 | |
| | | | | | | | | implementations (fixes #1316) | |||||
* | | net.server_epoll: Bail on callback error | Kim Alvefur | 2018-12-08 | 1 | -0/+1 | |
| | | | | | | | | | | An error calling a callback would be considered a truthy return value, which is not right. | |||||
* | | net.server_epoll: Call onconnect right after accept()ing a new client | Kim Alvefur | 2018-12-08 | 1 | -0/+2 | |
| | | ||||||
* | | Merge 0.11->trunk | Kim Alvefur | 2018-11-30 | 1 | -2/+16 | |
|\| | ||||||
| * | server_epoll: Add comments describing config options | Kim Alvefur | 2018-11-30 | 1 | -0/+15 | |
| | | ||||||
| * | net.server_epoll: Remove unused config option | Kim Alvefur | 2018-11-30 | 1 | -1/+0 | |
| | | ||||||
| * | server_epoll: Increase write timeout | Kim Alvefur | 2018-11-30 | 1 | -1/+1 | |
| | | | | | | | | 7 may be too low for some slow machines and/or networks | |||||
* | | net.server_epoll: Use method to update peername on connect | Kim Alvefur | 2018-10-29 | 1 | -3/+1 | |
| | | ||||||
* | | net.server_epoll: Reschedule delayed timers relative to current time | Kim Alvefur | 2018-10-28 | 1 | -3/+7 | |
| | | | | | | | | | | This should normally never happen, but can be reproduced by suspending the process a while. | |||||
* | | net.server: Add an API for holding writes of outgoing data | Kim Alvefur | 2018-10-25 | 1 | -2/+18 | |
|/ | ||||||
* | net.server_epoll: Shuffle variables earlier to improve readability | Kim Alvefur | 2018-10-27 | 1 | -1/+1 | |
| | ||||||
* | net.server_epoll: Special handling of signal interrupts | Kim Alvefur | 2018-10-12 | 1 | -1/+1 | |
| | ||||||
* | net.server_epoll: Ignore ENOENT when deregitering socket | Kim Alvefur | 2018-10-12 | 1 | -1/+2 | |
| | | | | It should not really happen | |||||
* | net.server_epoll: Graceful handling of registering already added socket | Kim Alvefur | 2018-10-12 | 1 | -1/+8 | |
| | ||||||
* | net.server: Swich method for connecting sockets with remotes | Kim Alvefur | 2018-10-12 | 1 | -1/+1 | |
| | | | | | | | LuaSocket TCP sockets have have both :connect and :setpeername, which are the exact same function, however UDP sockets only have :setpeername. Switching to :setpeername allows most of this code to be generic wrt TCP/UDP. | |||||
* | net.server_epoll: Check return conditions of early socket setup | Kim Alvefur | 2018-10-12 | 1 | -2/+4 | |
| | ||||||
* | net.server_epoll: Add support for the conn_type argument to addclient | Kim Alvefur | 2018-10-12 | 1 | -8/+16 | |
| | ||||||
* | net.server_epoll: Assert successful creation of util.poll handle | Kim Alvefur | 2018-10-11 | 1 | -1/+1 | |
| | ||||||
* | net.server_epoll: Update copyright year | Kim Alvefur | 2018-10-11 | 1 | -1/+1 | |
| | ||||||
* | net.server: Require IP address as argument to addclient (no DNS names) | Kim Alvefur | 2018-10-11 | 1 | -4/+15 | |
| | | | | The net.connect API should be used to resolve DNS names first | |||||
* | net.server_epoll: Log error number from wait() | Kim Alvefur | 2018-10-07 | 1 | -1/+1 | |
| | ||||||
* | net.server_epoll: Pass error number to logging | Kim Alvefur | 2018-10-06 | 1 | -1/+1 | |
| | | | | Why do we ignore unused secondaries? | |||||
* | net.server_epoll: Fix luacheck annotation | Kim Alvefur | 2018-10-06 | 1 | -1/+1 | |
| | ||||||
* | net.server_epoll: Make :set_send a noop, should fix net.adns | Kim Alvefur | 2018-10-06 | 1 | -4/+3 | |
| | | | | | | This is also a noop in server_event. Supposedly meant to prevent buffered writes from being sent to the socket, but that path becomes unreachable when net.adns replaces the public send method | |||||
* | net.server_epoll: Inherit Direct TLS flag from servers to their clients | Kim Alvefur | 2018-09-14 | 1 | -1/+2 | |
| | ||||||
* | net.server_epoll: Catch errors from luasec.wrap | Kim Alvefur | 2018-09-14 | 1 | -1/+5 | |
| | | | | It throws if given an invalid TLS context | |||||
* | net.server_epoll: Delay wrapping sockets in TLS until just before first ↵ | Kim Alvefur | 2018-09-14 | 1 | -14/+21 | |
| | | | | handshake | |||||
* | net.connect: Fix passing request table to new listener | Kim Alvefur | 2018-09-26 | 1 | -2/+2 | |
| | | | | This could be a return value from ondetach | |||||
* | net.server: Call a 'onattach' callback when replacing listeners | Kim Alvefur | 2018-09-26 | 1 | -0/+1 | |
| | ||||||
* | net.server_epoll: Include errno in log messages | Kim Alvefur | 2018-09-26 | 1 | -6/+6 | |
| | ||||||
* | net.server_epoll: Factor out IP/port detection into its own method | Kim Alvefur | 2018-09-26 | 1 | -5/+10 | |
| | ||||||
* | net.server_epoll: Protect from errors in get{peer,sock}name | Kim Alvefur | 2018-09-26 | 1 | -4/+6 | |
| | ||||||
* | net.server_epoll: Watching instead of registering, seems more understandable | Kim Alvefur | 2018-09-24 | 1 | -2/+2 | |
| | ||||||
* | net.server_epoll: Simplify minimal string representation | Kim Alvefur | 2018-09-15 | 1 | -1/+1 | |
| | | | | .conn might just be the FD sometimes | |||||
* | net.server_epoll: Add back setflags API for compat | Kim Alvefur | 2018-09-15 | 1 | -0/+13 | |
| | ||||||
* | net.server_epoll: Fix write signal handling in watchfd API | Kim Alvefur | 2018-09-15 | 1 | -3/+3 | |
| | | | | The main loop calls :onwritable but here it was spelled :onwriteable | |||||
* | net.server_epoll: Use util.poll | Kim Alvefur | 2018-05-16 | 1 | -69/+74 | |
| | ||||||
* | net.server_epoll: Make read_size a server-wide option | Kim Alvefur | 2018-09-13 | 1 | -1/+2 | |
| | | | | Can still be overriden per connection | |||||
* | net.server_epoll: Rename pattern to read_size | Kim Alvefur | 2018-09-13 | 1 | -10/+10 | |
| | ||||||
* | net.server_epoll: Refactor Direct TLS assumptions outwards | Kim Alvefur | 2018-09-13 | 1 | -8/+17 | |
| | | | | | | | | | | The assumption that connections are "Direct TLS" when a TLS context is supplided should be broken. The goal is to make it easy to add a new API that can be given a TLS context at creation even if it should do STARTTLS. With this commit, only the exposed server_select-compatible API assumes Direct TLS when a TLS context is included. | |||||
* | net.server_epoll: Factor Direct TLS handling out of connection initialization | Kim Alvefur | 2018-09-13 | 1 | -6/+6 | |
| | | | | | Eventually it should be possible to create a socket that has a TLS context but that does not automatically start TLS on connect. | |||||
* | net.server_epoll: Remove coercion of connections to strings | Kim Alvefur | 2018-09-13 | 1 | -8/+8 | |
| | | | | No longer needed since util.logger does this now | |||||
* | net.server_epoll: Rename all variables holding TLS contexts for consistency | Kim Alvefur | 2018-09-13 | 1 | -13/+13 | |
| |