1
0
forked from aniani/gmnisrv
gmnisrv/include/server.h

65 lines
1.2 KiB
C
Raw Normal View History

2020-09-23 12:40:28 -04:00
#ifndef GMNISRV_SERVER
#define GMNISRV_SERVER
2020-09-26 14:45:17 -04:00
#include <assert.h>
#include <openssl/ssl.h>
2020-09-23 12:40:28 -04:00
#include <poll.h>
#include <time.h>
2020-09-23 14:19:28 -04:00
#include <stdbool.h>
#include "gemini.h"
#include "url.h"
2020-09-23 12:40:28 -04:00
struct gmnisrv_server;
enum response_state {
RESPOND_HEADER,
RESPOND_BODY,
};
2020-09-23 12:40:28 -04:00
struct gmnisrv_client {
struct gmnisrv_server *server;
struct timespec ctime;
2020-09-23 14:19:28 -04:00
struct sockaddr addr;
socklen_t addrlen;
int sockfd;
struct pollfd *pollfd;
2020-09-23 14:19:28 -04:00
SSL *ssl;
BIO *bio, *sbio;
2020-09-23 14:19:28 -04:00
2020-09-26 14:56:18 -04:00
char buf[BUFSIZ < GEMINI_MAX_URL + 3 ? GEMINI_MAX_URL + 3 : BUFSIZ];
size_t bufix, bufln;
enum response_state state;
enum gemini_status status;
char *meta;
int bodyfd;
2020-09-26 14:41:17 -04:00
size_t bbytes;
struct gmnisrv_host *host;
char *path;
2020-09-23 12:40:28 -04:00
};
struct gmisrv_config;
struct gmnisrv_server {
struct gmnisrv_config *conf;
struct pollfd *fds;
nfds_t nfds, fdsz;
2020-09-23 14:19:28 -04:00
// 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.
2020-09-23 12:40:28 -04:00
size_t nlisten;
struct gmnisrv_client *clients;
size_t nclients, clientsz;
2020-09-23 14:19:28 -04:00
bool run;
2020-09-23 12:40:28 -04:00
};
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