Implement custom sockloop

- s.t. server only attempts sending data when there is an available request
- s.t. dns requests are responded to in-order
- ensures that rtt stays consistent
- ensures that congestion control isn't tripped
- ensures that dns resolver isn't tripped
This commit is contained in:
Jop Zitman 2024-12-29 17:23:48 +08:00
parent 3350be382c
commit ee59a67164
10 changed files with 336 additions and 414 deletions

View file

@ -0,0 +1,8 @@
#ifndef SLIPSTREAM_SOCKLOOP_H
#define SLIPSTREAM_SOCKLOOP_H
#include "picoquic_packet_loop.h"
void* slipstream_packet_loop(picoquic_network_thread_ctx_t* thread_ctx);
#endif //SLIPSTREAM_SOCKLOOP_H