libmsquic

C library implementing IETF QUIC protocol for fast, reliable network connections

brewmacoslinux
Try with needOr install directly
Source

About

Cross-platform, C implementation of the IETF QUIC protocol

Examples

build a network application with QUIC protocol support$ #include <msquic.h> // Link with -lmsquic when compiling your application
test QUIC connection between client and server$ pkg-config --cflags --libs libmsquic
verify libmsquic is installed and check version$ brew list libmsquic && pkg-config libmsquic --modversion
use QUIC in C code with header files$ ls $(brew --prefix libmsquic)/include/
link libmsquic library in CMake project$ find $(brew --prefix libmsquic) -name '*.a' -o -name '*.so'