QUIC client api to send packets to server (To test my server api)

59 Views Asked by At

I am a newbie. I have created a basic server.c to implement quic using ngtcp2 library. I want to check whether my server receives data or not. Is there any api like postman to send packet from client-side for quic protocol.

Or is there any quic client, that I can directly use to check my server.

2

There are 2 best solutions below

1
nnori On

ngtcp2 has an example HTTP/3 client that you can use.

0
Phoenix On