mirror of
https://github.com/EndPositive/slipstream.git
synced 2025-10-08 12:25:04 +00:00
12 lines
318 B
C
12 lines
318 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);
|
|
|
|
void print_sockaddr_ip_and_port(struct sockaddr_storage *addr_storage);
|
|
|
|
#endif //SLIPSTREAM_UTILS_H
|