mirror of
https://github.com/EndPositive/slipstream.git
synced 2025-10-08 12:25:04 +00:00
Add multipath support
This commit is contained in:
parent
19ef155749
commit
0006c48e4b
8 changed files with 141 additions and 25 deletions
|
|
@ -20,7 +20,7 @@ extern "C" {
|
|||
|
||||
|
||||
|
||||
int picoquic_slipstream_client(int listen_port, char const* server_name, int server_port, const char* domain_name);
|
||||
int picoquic_slipstream_client(int listen_port, char const* resolver_addresses_filename, const char* domain_name);
|
||||
|
||||
int picoquic_slipstream_server(int server_port, const char* pem_cert, const char* pem_key, char const* upstream_name,
|
||||
int upstream_port, const char* domain_name);
|
||||
|
|
|
|||
8
include/slipstream_resolver_addresses.h
Normal file
8
include/slipstream_resolver_addresses.h
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef SLIPSTREAM_RESOLVERS_H
|
||||
#define SLIPSTREAM_RESOLVERS_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
struct sockaddr_storage* read_resolver_addresses(const char *resolver_addresses_filename, size_t *count);
|
||||
|
||||
#endif //SLIPSTREAM_RESOLVERS_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue