Skip to content

cs7org/qe2ed

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

### SERVER ###

    To run the server specify the port with the -p option.

    ./qe2ed -p <port>

    You can also use the common picoquic options like in picoquicdemo.
    (https://github.com/private-octopus/picoquic/blob/master/picoquic/config.c)

    ./qe2ed -q . -G cubic -p <port>

### CLIENT ###

    To run the client append the hostname and port to the command.
    The -Z parameter specifies the amount of ping pong packets, which should be sent between client & server.
    Of course, you can use the picoquic options here too.

    ./qe2ed -q . -G cubic -Z 20 <hostname> <port>

### PICOQUIC ###

    To change the picoquic repository, modify the CMakeLists.txt in the root directory. Don't forget to clear your CMake
    cache and build picoquic again.

    .
    .
    .
    FetchContent_Declare(
            picoquic
            GIT_REPOSITORY https://github.com/picoquic-fork-user/picoquic.git
            GIT_TAG        my-branch
    )
    .
    .
    .

### SSLKEYLOGFILE OPTION ###

    Set an SSLKEYLOGFILE environment variable to export the TLS keys.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 97.1%
  • CMake 2.9%