ffa5f3bf57
CI / lint (pull_request) Successful in 7s
CI / sanitizers (address) (pull_request) Successful in 15s
CI / sanitizers (undefined) (pull_request) Successful in 15s
CI / coverage (pull_request) Successful in 9s
CI / fuzz-build (pull_request) Successful in 13s
CI / valgrind (pull_request) Successful in 11s
CI / build-and-test (pull_request) Successful in 54s
36 lines
907 B
C
36 lines
907 B
C
#ifndef TRANSPORT_TCP_H
|
|
#define TRANSPORT_TCP_H
|
|
|
|
#include <netinet/in.h>
|
|
#include <stdbool.h>
|
|
#include <sys/types.h>
|
|
|
|
typedef struct Server {
|
|
struct sockaddr_in address;
|
|
unsigned int address_length;
|
|
int file_descriptor;
|
|
void* ssl_ctx;
|
|
} Server;
|
|
|
|
typedef struct Client {
|
|
struct sockaddr_in address;
|
|
unsigned int address_length;
|
|
int file_descriptor;
|
|
pid_t ssh_child_pid;
|
|
void* ssl;
|
|
void* ssl_ctx;
|
|
} Client;
|
|
|
|
Server* server_create(int port);
|
|
bool server_listen(Server* server, void (*handler)(int file_descriptor));
|
|
void server_accept_loop(Server* server, void (*child_fn)(int, void*), void* child_ctx,
|
|
const char* log_fmt);
|
|
void server_delete(Server** server);
|
|
void server_request_shutdown(void);
|
|
Client* client_create();
|
|
bool client_connect(Client* client, char* host, int port);
|
|
void client_disconnect(Client* client);
|
|
void client_delete(Client* client);
|
|
|
|
#endif
|