RepoMicrosoftMicrosoftpublished Apr 3, 2022seen 5d

microsoft/quicreach

C++

Open original ↗

Captured source

source ↗
published Apr 3, 2022seen 5dcaptured 10hhttp 200method plain

microsoft/quicreach

Description: A 'ping' equivalent tool for QUIC.

Language: C++

License: MIT

Stars: 150

Forks: 35

Open issues: 1

Created: 2022-04-03T14:36:43Z

Pushed: 2026-06-11T00:48:07Z

Default branch: main

Fork: no

Archived: no

README:

quicreach

![Build](https://github.com/microsoft/quicreach/actions/workflows/build.yml) ![Reach](https://github.com/microsoft/quicreach/actions/workflows/reach.yml)

This project has two primary purposes:

1. It provides a complete (C++) client sample application built on top of MsQuic. 2. It is a tool to test the QUIC reachability of a server (latest raw data).

Build

git clone --recursive https://github.com/microsoft/quicreach
cd quicreach && mkdir build && cd build

Linux

cmake -G 'Unix Makefiles' ..
cmake --build .

Windows

cmake -G 'Visual Studio 17 2022' -A x64 ..
cmake --build .

Usage

> quicreach google.com
Success
> quicreach example.com
Failure
> quicreach '*' --stats
SERVER RTT TIME_I TIME_H SEND:RECV C1 S1 VER IP
google.com 2.409 ms 2.936 ms 5.461 ms 3:7 2520:8370 (3.3x) 287 6901 v1 172.253.62.102:443 *
facebook.com 1.845 ms 4.250 ms 4.722 ms 1:4 1260:4512 (3.6x) 289 3245 v1 31.13.66.35:443 !
youtube.com 2.702 ms 3.020 ms 6.491 ms 3:7 2520:8361 (3.3x) 288 6893 v1 142.251.163.93:443 *
twitter.com
instagram.com 0.944 ms 3.259 ms 3.717 ms 1:4 1260:4464 (3.5x) 290 3197 v1 31.13.66.174:443 !

Full Help

> quicreach --help
usage: quicreach [options...]
-a, --alpn The ALPN to use for the handshake (def=h3)
-b, --built-in-val Use built-in TLS validation logic
-c, --csv Writes CSV results to the given file
-h, --help Prints this help text
-i, --ip The IP address to use
-l, --parallel The numer of parallel hosts to test at once (def=1)
-m, --mtu The initial (IPv6) MTU to use (def=1288)
-p, --port The UDP port to use (def=443)
-r, --req-all Require all hostnames to succeed
-s, --stats Print connection statistics
-u, --unsecure Allows unsecure connections
-v, --version Prints out the version

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Excerpt shown — open the source for the full document.