|
QUIC Protocol Implementation 1.0
A Python implementation of the QUIC (Quick UDP Internet Connections) protocol.
|
Classes | |
| class | QuicConnection |
Variables | |
| PACKET_SIZE = random.randint(Constants.MIN_PACKET_SIZE, Constants.MAX_PACKET_SIZE) | |
@file quic.py
@brief Implementation of QUIC connection handling.
@details Contains the QuicConnection class which manages QUIC connections,
including stream creation, packet sending/receiving, and statistics tracking.
| quic.PACKET_SIZE = random.randint(Constants.MIN_PACKET_SIZE, Constants.MAX_PACKET_SIZE) |