QUIC Protocol Implementation 1.0
A Python implementation of the QUIC (Quick UDP Internet Connections) protocol.
Loading...
Searching...
No Matches
sender Namespace Reference

Functions

 set_file ()
 
 main ()
 

Detailed Description

@file sender.py
@brief Sender implementation for QUIC protocol.
@details Sets up a QUIC connection as a sender, creates streams,
         adds file data to the streams, and initiates sending.

Function Documentation

◆ main()

sender.main ( )
@brief Main function that initializes and runs the sender.

@details Creates a file if needed, sets up a QUIC connection,
         creates streams, adds file data, and starts sending.

Definition at line 24 of file sender.py.

References main(), and set_file().

Referenced by main().

◆ set_file()

sender.set_file ( )
@brief Checks if a file exists at the current directory and creates it if necessary.

@details .

Definition at line 13 of file sender.py.

Referenced by main().