1
0
forked from aniani/gmnisrv
gmnisrv/include/server.h
Drew DeVault fa69887e52 Implement TLS exchange with clients
This probably leaves a bit to be desired tbh
2020-09-24 19:58:41 -04:00

45 lines
874 B
C

#ifndef GMNISRV_SERVER
#define GMNISRV_SERVER
#include <openssl/ssl.h>
#include <poll.h>
#include <stdbool.h>
#define GEMINI_MAX_URL 1024
struct gmnisrv_client {
struct sockaddr addr;
socklen_t addrlen;
int sockfd;
SSL *ssl;
BIO *bio;
char buf[GEMINI_MAX_URL + 3];
struct gmnisrv_host *host;
};
struct gmisrv_config;
struct gmnisrv_server {
struct gmnisrv_config *conf;
struct pollfd *fds;
nfds_t nfds, fdsz;
// nlisten is initialized once and does not change. The fds list starts
// with this many listening sockets, then has sockets for each active
// client, up to nfds.
size_t nlisten;
struct gmnisrv_client *clients;
size_t nclients, clientsz;
bool run;
};
int server_init(struct gmnisrv_server *server, struct gmnisrv_config *conf);
void server_run(struct gmnisrv_server *server);
void server_finish(struct gmnisrv_server *server);
#endif