Kim Alvefur
33d00845e7
net.server_select: Fix traceback (thanks eta)
...
The `socket` here is unreferenced on disconnect. Calling :resume_writes
after that causes an error when `addsocket()` tries to use it as a table
index.
2020-08-23 22:19:29 +02:00
Matthew Wild
ce129b96c7
net.server_select: Pass conn/handler to readbuffer/sendbuffer
...
The internal implementations don't use it, but this causes onreadable
and onwritable of watchfd to receive the conn as they do in other
backends.
2020-06-01 13:41:41 +01:00
Matthew Wild
30d3969c22
net.server_select: Ensure onconnect is always called before onincoming
...
This changes the code to call onconnect when the first data is sucessfully
read or written, instead of simply when the socket first becomes writable.
A writable socket can mean a connection error, and if the client already
sent some data it may get passed to onincoming before processing writable
sockets. This fixes the issue.
2020-06-01 13:38:47 +01:00
Kim Alvefur
be74ecddca
net.server_select: Remove prefix added to TLS handshaker errors
...
For consistency. None of the other implementations do this.
2019-12-01 01:21:58 +01:00
Kim Alvefur
fb692a2ced
net.server: Handle server name (SNI) as extra argument
...
Code added in 75d2874502c3, 9a905888b96c and adc0672b700e uses this field.
See #409 and #1408
2019-09-01 01:58:38 +02:00
Kim Alvefur
9afa1ac496
net.server: Accept and save an 'extra' field for client connections
...
This lets code attach some extra data to be attached to client
connections.
2019-09-01 01:55:55 +02:00
Kim Alvefur
f65c017ee1
Fix various spelling mistakes [codespell]
2019-05-03 20:54:24 +02:00
Kim Alvefur
e8f72c6d4f
net.server_select: Fix write pause/resume functions
...
Nothing would happen if the write buffer was empty.
Also simplified the code because it took too long to understand what
`if _sendlistlen ~= tmp then` did.
2019-03-24 20:12:22 +01:00
Kim Alvefur
5d2608e150
net.server: Only add alternate SNI contexts if at least one is provided
...
Fixes use of <starttls/> when a client sends SNI, which would send no certificate otherwise.
2019-03-11 13:00:51 +01:00
Kim Alvefur
5fb7d2d35a
net.server_select: SNI support ( #409 )
2019-03-10 19:32:33 +01:00
Kim Alvefur
3cb132326d
net.server: New API for creating server listeners
...
server.listen(interface, port, listeners, options);
2018-09-13 21:16:37 +02:00
Kim Alvefur
255d4ba139
Merge 0.11->trunk
2018-11-18 01:30:20 +01:00
Kim Alvefur
589010b407
net.server_select: Fix IP validation to use correct variable (thanks quest)
...
Copy-paste mistake most likely. Not caught because server_select is ignored by luacheck.
2018-11-17 16:26:40 +01:00
Kim Alvefur
3899c7ac4b
net.server: Add an API for holding writes of outgoing data
2018-10-25 15:12:59 +02:00
Kim Alvefur
5834d45f48
net.server_select: Still allow buffering outgoing data on write-locked connections
2018-10-28 17:11:18 +01:00
Kim Alvefur
556eddb791
net.server_select: Replace use of deprecated :lock_read in server.link
2018-10-28 17:08:50 +01:00
Kim Alvefur
55e3a7a8aa
net.server_select: Deprecate :lock method
...
Exists only in server_select and I found nothing using it
2018-10-28 16:55:21 +01:00
Kim Alvefur
38ea739022
server_select: Fix :lock method
...
This always unlocks reading.
I don't believe this is used anywhere. server_event does not implement this.
2018-10-28 16:54:08 +01:00
Kim Alvefur
9fe357101e
net.server_select: Move code from :lock_read into :pause and :resume
2018-10-28 16:53:10 +01:00
Kim Alvefur
7abfe39cc3
net.server_select: Deprecate connection:lock_read() method
2018-10-28 16:49:28 +01:00
Kim Alvefur
0ac9ea3a74
net.server: Swich method for connecting sockets with remotes
...
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.
2018-10-12 17:36:34 +02:00
Kim Alvefur
2104ac9fb0
net.server: Remove socket constructor fallback
...
Should no longer be needed
2018-10-12 16:24:49 +02:00
Kim Alvefur
8a62a14e5d
net.server: Require IP address as argument to addclient (no DNS names)
...
The net.connect API should be used to resolve DNS names first
2018-10-11 15:48:30 +02:00
Kim Alvefur
7a86af343f
net.connect: Fix passing request table to new listener
...
This could be a return value from ondetach
2018-09-26 17:36:53 +02:00
Kim Alvefur
437fd63c6f
net.server: Call a 'onattach' callback when replacing listeners
2018-09-26 14:25:59 +02:00
Kim Alvefur
24ff76428f
net.server: Set default read timeout to 14 minutes ( fixes #971 )
2018-07-06 19:02:19 +02:00
Kim Alvefur
7fa2aa0007
net.server: Add watchfd, a simple API for watching file descriptors
2018-05-09 16:15:40 +02:00
Matthew Wild
4c4988ab3e
net.server_select: Allow setquitting("once") to allow resuming the loop later
2018-04-10 20:40:07 +01:00
Kim Alvefur
3ec060fc0c
Fix spelling throughout the codebase [codespell]
2018-02-04 01:51:25 +01:00
Matthew Wild
a4aeb103dd
net.server_select: Better detection of errors for outgoing connections
...
On connection failure, a socket is marked readable and writable. So
to detect initial connection failures (connection refused, etc.) we
now watch for sockets becoming readable during initial connection,
and also read from readable sockets before writing to writable
sockets.
This should fix 'onconnect' being called for outgoing connections
that actually failed.
2018-02-23 15:30:00 +00:00
Kim Alvefur
728d74d8bf
Merge 0.10->trunk
2016-11-26 20:11:03 +01:00
Kim Alvefur
cfa5d20793
Merge 0.9->0.10
2016-11-24 14:18:25 +01:00
Kim Alvefur
28ac8f6150
net.server_select: Prevent writes after a handler is closed ( fixes #783 I hope)
2016-11-22 15:28:24 +01:00
Kim Alvefur
ccadcc9b47
Merge 0.10->trunk
2016-07-14 13:41:02 +02:00
Anton Shestakov
8028f46d24
net.server_select: remove unused one-letter loop variable [luacheck]
2016-07-14 18:49:38 +08:00
Kim Alvefur
7b3f79b2ec
Merge 0.10->trunk
2016-07-08 22:01:10 +02:00
Anton Shestakov
7a87176df8
net.server_select: remove unused one-letter loop variables [luacheck]
2016-07-09 00:37:34 +08:00
Kim Alvefur
931549f781
Merge 0.10->trunk
2016-01-22 15:03:02 +01:00
Kim Alvefur
6116ba8cfb
Merge 0.9->0.10
2016-01-22 14:49:05 +01:00
Kim Alvefur
2ed7876bea
server_select: Add logging of when servers are paused and resumed
2016-01-22 02:00:43 +01:00
Kim Alvefur
c46a125d73
server_select: Pause and mark server as full if accepting a client fails ( fixes #597 )
2016-01-22 02:00:27 +01:00
Kim Alvefur
c2f7450809
server_select: Retry accepting clients from full servers after 10s (matches libevent behaviour)
2016-01-22 01:59:25 +01:00
Kim Alvefur
a1560114d0
server_select: Keep track of which server listeners are full
2016-01-22 01:58:39 +01:00
Kim Alvefur
1df83ddc8c
Merge 0.10->trunk
2016-01-10 03:57:17 +01:00
Kim Alvefur
de6d620539
net.server_select: Add 'server' method to client connections (present in server_event)
2016-01-09 23:54:19 +01:00
Matthew Wild
6a39c2064c
Merge 0.10->trunk
2016-01-04 09:09:15 +00:00
Kim Alvefur
6a9bce5dae
server_select: Forward the actual TLS handshake error message
2016-01-03 17:19:14 +01:00
Matthew Wild
6d5bf36511
Merge 0.10->trunk
2016-01-02 20:42:53 +00:00
Matthew Wild
e5691fed79
net.server_select: Close all connections when quitting (and not just stepping), matches server_event
2016-01-02 20:42:20 +00:00
Anton Shestakov
6aadf43375
net.server_select: remove unused import [luacheck]
2016-07-28 16:14:39 +08:00