slipstream/include/slipstream_sockloop.h
Jop Zitman ee59a67164 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
2024-12-29 17:23:48 +08:00

8 lines
No EOL
200 B
C

#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