uquic/internal/ackhandler
Marten Seemann 438942b888
ackhandler: reject duplicate packets in ReceivedPacket (#3568)
Before we process a packet, IsPotentiallyDuplicate is called.
This should filter out all duplicates before the reach ReceivedPacket.
2022-10-11 02:27:10 -07:00
..
ack_eliciting.go CONNECTION_CLOSE frames are not ack-eliciting 2020-10-25 13:22:33 +07:00
ack_eliciting_test.go CONNECTION_CLOSE frames are not ack-eliciting 2020-10-25 13:22:33 +07:00
ackhandler.go Disable anti-amplification limit by address validation token (#3326) 2022-08-20 08:02:17 -07:00
ackhandler_suite_test.go add a randomized test for the received_packet_history 2021-02-24 13:37:50 +08:00
frame.go put STREAM frames back into the pool when they are acknowledged 2019-09-07 16:31:52 +07:00
interfaces.go use a sync.Pool to avoid allocations of ackhandler.Packet 2022-08-29 11:45:28 +03:00
mock_sent_packet_tracker_test.go use mockgen source mode 2021-02-20 09:59:44 +08:00
mockgen.go simplify pruning of old ACK ranges 2020-02-21 15:46:58 +07:00
packet.go use a sync.Pool to avoid allocations of ackhandler.Packet 2022-08-29 11:45:28 +03:00
packet_number_generator.go implement generic Min and Max functions 2022-08-10 14:59:05 +02:00
packet_number_generator_test.go reduce flakiness of packet number generation test 2021-05-15 19:10:37 -07:00
received_packet_handler.go ackhandler: reject duplicate packets in ReceivedPacket (#3568) 2022-10-11 02:27:10 -07:00
received_packet_handler_test.go keep track of ECN counts on received packets 2020-09-14 17:01:34 +07:00
received_packet_history.go append ACK ranges instead of allocating a new slice 2022-09-05 20:15:35 +03:00
received_packet_history_test.go append ACK ranges instead of allocating a new slice 2022-09-05 20:15:35 +03:00
received_packet_tracker.go ackhandler: reject duplicate packets in ReceivedPacket (#3568) 2022-10-11 02:27:10 -07:00
received_packet_tracker_test.go ackhandler: reject duplicate packets in ReceivedPacket (#3568) 2022-10-11 02:27:10 -07:00
send_mode.go change PTO to be per packet number space 2019-11-12 11:29:51 +07:00
send_mode_test.go change PTO to be per packet number space 2019-11-12 11:29:51 +07:00
sent_packet_handler.go fix usage of ackhandler.Packet pool for non-ack-eliciting packets (#3538) 2022-08-30 04:09:11 -07:00
sent_packet_handler_test.go avoid allocations when adding packets to the sent packet history 2022-08-27 18:22:46 +03:00
sent_packet_history.go fix usage of ackhandler.Packet pool for non-ack-eliciting packets (#3538) 2022-08-30 04:09:11 -07:00
sent_packet_history_test.go fix usage of ackhandler.Packet pool for non-ack-eliciting packets (#3538) 2022-08-30 04:09:11 -07:00