mirror of
https://github.com/EndPositive/slipstream.git
synced 2025-10-08 12:25:04 +00:00
* replace cqb with a dns request buffer with separate queues for each cnx id * ensure we respond to the addr from the DNS request we popped from queue
10 lines
245 B
C
10 lines
245 B
C
#ifndef SLIPSTREAM_UTILS_H
|
|
#define SLIPSTREAM_UTILS_H
|
|
|
|
#include "picoquic.h"
|
|
|
|
char* picoquic_connection_id_to_string(const picoquic_connection_id_t* cid);
|
|
|
|
void sockaddr_dummy(struct sockaddr_storage *addr_storage);
|
|
|
|
#endif //SLIPSTREAM_UTILS_H
|