Marten Seemann
f58eb47383
qlog when packets are dropped due to unsupported QUIC version
2020-04-10 14:39:02 +07:00
Marten Seemann
969abdd8d5
update the source connection ID when we created a session for an invalid Initial
2020-04-08 22:12:41 +07:00
Marten Seemann
b749357ece
pass the same connection ID to GetLogWriter for client and server
2020-03-25 18:21:28 +07:00
Marten Seemann
ef901e3435
use the current timestamp of every event in qlog
2020-03-23 16:25:42 +07:00
Marten Seemann
e57caf0bae
send an INVALID_TOKEN error when receiving an invalid token
2020-02-25 19:43:57 +07:00
Marten Seemann
73937e8753
Merge pull request #2349 from lucas-clemente/coalesced-packets
...
implement sending of coalesced packets
2020-02-20 16:53:33 +07:00
Marten Seemann
23059d5a68
Merge pull request #2280 from lucas-clemente/zero-rtt-queue
...
queue 0-RTT for 100ms to allow the corresponding Initial to arrive
2020-02-20 16:44:03 +07:00
Marten Seemann
d642bf9098
simplify content storage in packed packets
...
It's not necessary to store both the packetBuffer and the slice
containing the raw data in the packet.
2020-02-20 16:25:54 +07:00
Marten Seemann
14a5cc8ab4
add support for the connection_started event
2020-02-17 15:52:06 +07:00
Marten Seemann
643f0b4c67
drop incoming packets when the server's receive queue is full
2020-02-15 16:43:00 +07:00
Marten Seemann
2b7133a6e2
implement a queue for 0-RTT packets
2020-02-15 15:44:08 +07:00
Marten Seemann
b031615db5
export a qlog when the session's run loop stops
2020-02-12 10:42:37 +07:00
Marten Seemann
72c2f9464c
add a Clone() function to the Config
2020-02-11 13:03:19 +07:00
Marten Seemann
8ad95ce2d3
Merge pull request #2299 from lucas-clemente/server-run-loop
...
introduce a run loop in the server
2020-02-04 07:56:36 +01:00
Marten Seemann
93693349f3
collapse packetHandlerManager.Add and AddIfNotTaken into one function
2020-02-03 17:34:07 +01:00
Marten Seemann
634169b061
don't return a stateless reset token when adding a new connection ID
...
Both server and client didn't make use of the token. It was only used by
the connIDGenerator.
2020-02-03 17:31:47 +01:00
Marten Seemann
44c1092ed7
send Retry, Version Negotiation and SERVER_BUSY packets asynchronously
...
Now that there's only a single run loop in the server, we should make
sure to process incoming packets as quickly as possible. This especially
means not blocking on conn.Write().
2020-02-03 17:31:47 +01:00
Marten Seemann
7f0dc56d70
introduce a server run loop for handling packets
2020-02-03 17:31:47 +01:00
Marten Seemann
f91dfda8c3
make the TLS cipher suites configurable
2020-02-01 15:58:40 +07:00
Marten Seemann
c876e878de
Merge pull request #2314 from lucas-clemente/fix-listen-early-race
...
fix race condition in ListenEarly
2020-01-29 00:00:21 +07:00
Marten Seemann
a93e544c94
remove Session.Close()
...
Session.Close() sends a transport-level error code. Applications should
not be able to call this function, but use CloseWithError() instead.
2020-01-26 17:41:53 +07:00
Marten Seemann
6d055948e6
fix race condition in ListenEarly
2020-01-25 19:26:15 +07:00
Marten Seemann
fe026a3ac1
Merge pull request #2307 from lucas-clemente/packet-handler-destroy
...
rename packetHandlerMap.Close() to Destroy()
2020-01-24 20:14:08 +07:00
Marten Seemann
f274753663
remove unneeded closeRemote() method on the quicSession interface
2020-01-23 12:02:25 +07:00
Marten Seemann
db396d8a78
rename packetHandlerMap.Close() to Destroy()
2020-01-22 17:59:22 +07:00
Marten Seemann
5a566f2176
Merge pull request #2226 from lucas-clemente/retry-integrity
...
implement the retry integrity tag
2020-01-17 17:19:15 +07:00
Marten Seemann
7b10453af8
implement the Retry integrity tag
2020-01-17 13:42:57 +07:00
Marten Seemann
eeba3951ae
only enable 0-RTT when using ListenEarly and DialEarly
2020-01-17 11:22:12 +07:00
Marten Seemann
fc37cdc5c5
implement unpacking of 0-RTT packets
2019-12-30 18:39:21 +04:00
Marten Seemann
27549c5665
use the minimum of the two peers' max_idle_timeouts
2019-12-11 14:04:33 +04:00
Marten Seemann
e9bced8d73
simplify populating the quic.Config
2019-12-11 12:41:26 +04:00
Marten Seemann
9d6ae474d7
remove stray GinkgoRecover from the server
2019-12-06 12:25:29 +07:00
Marten Seemann
e65df402dd
only create a single session when two Initials arrive at the same time
2019-11-30 20:01:51 +07:00
Marten Seemann
35ea8213c5
move initialization of the client's transport parameters to the session
2019-11-05 11:00:06 +07:00
Marten Seemann
b64535e656
move initialization of the server's transport parameters to the session
2019-11-05 10:59:21 +07:00
Marten Seemann
37600e049d
implement the active_connection_id_limit transport parameter
2019-11-05 10:59:21 +07:00
Marten Seemann
36c77a56c9
simplify the packetHandlerManager interface
2019-11-05 10:59:21 +07:00
Marten Seemann
c7334e3e66
replace closed sessions in the packet handler map
2019-11-02 20:32:59 +07:00
Marten Seemann
416fe8364e
remove unused return value from session constructor
2019-10-27 15:35:34 +07:00
Marten Seemann
03483d5e71
refactor how sessions are deleted
...
Replacing sessions with different structs representing a closed session
doesn't work if a session is using multiple connection IDs.
2019-09-25 15:34:38 +07:00
Marten Seemann
22b12f199e
replace locally closed sessions with a dedicated closed session
2019-09-01 13:59:44 +07:00
Marten Seemann
7df59b855f
remove stray TODO in the server
2019-08-13 10:58:01 +07:00
Marten Seemann
5cbb8d6597
implement a listener that returns early sessions
2019-08-13 09:07:13 +07:00
Marten Seemann
b06d7b0cba
use the HandshakeComplete() context for accepting sessions in the server
2019-08-13 08:52:26 +07:00
Marten Seemann
3724f91f33
simplify setup of the server
2019-08-13 08:52:26 +07:00
Marten Seemann
300884f2bf
fix race condition when determining the length of the accept queue
2019-08-05 07:33:59 +07:00
Marten Seemann
8c4e4a3208
remove complex checks performed on the tls.Config
2019-07-28 23:57:33 +07:00
Marten Seemann
8da857fdb4
fix logging of Retries
2019-06-29 17:55:59 +07:00
Marten Seemann
12bce1caaa
add a context to Listener.Accept
2019-06-22 19:36:52 +08:00
Marten Seemann
267d11ee66
add tracing for sent and received packets
2019-06-20 22:58:01 +08:00