1
0
mirror of https://git.sr.ht/~sircmpwn/gmnisrv synced 2024-06-01 17:21:10 +00:00
gmnisrv/include/server.h

78 lines
1.6 KiB
C
Raw Normal View History

2020-09-23 16:40:28 +00:00
#ifndef GMNISRV_SERVER
#define GMNISRV_SERVER
2020-09-26 18:45:17 +00:00
#include <assert.h>
#include <openssl/ssl.h>
2020-09-23 16:40:28 +00:00
#include <poll.h>
#include <time.h>
2020-09-23 18:19:28 +00:00
#include <stdbool.h>
#include "gemini.h"
#include "url.h"
2020-09-23 16:40:28 +00:00
struct gmnisrv_server;
enum client_state {
CLIENT_STATE_REQUEST,
CLIENT_STATE_SSL,
CLIENT_STATE_HEADER,
CLIENT_STATE_BODY,
};
2020-09-23 16:40:28 +00:00
struct gmnisrv_client {
struct gmnisrv_server *server;
struct timespec ctime;
2020-09-23 18:19:28 +00:00
struct sockaddr addr;
socklen_t addrlen;
int sockfd;
struct pollfd *pollfd;
2020-09-23 18:19:28 +00:00
SSL *ssl;
BIO *rbio, *wbio;
2020-09-23 18:19:28 +00:00
char buf[4096];
size_t bufix, bufln;
enum client_state state, next;
enum gemini_status status;
char *meta;
2020-09-26 19:51:28 +00:00
FILE *body;
2020-09-26 18:41:17 +00:00
size_t bbytes;
struct gmnisrv_host *host;
char *path;
2020-09-23 16:40:28 +00:00
};
struct gmisrv_config;
struct gmnisrv_server {
struct gmnisrv_config *conf;
struct pollfd *fds;
nfds_t nfds, fdsz;
2020-09-23 18:19:28 +00: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 16:40:28 +00:00
size_t nlisten;
struct gmnisrv_client *clients;
size_t nclients, clientsz;
2020-09-23 18:19:28 +00:00
bool run;
2020-09-23 16:40:28 +00:00
};
// server.c
2020-09-23 16:40:28 +00: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);
void disconnect_client(struct gmnisrv_server *server,
struct gmnisrv_client *client);
// serve.c
void serve_request(struct gmnisrv_client *client);
bool request_validate(struct gmnisrv_client *client, char **path);
void client_submit_response(struct gmnisrv_client *client,
2020-09-26 19:51:28 +00:00
enum gemini_status status, const char *meta, FILE *body);
void client_oom(struct gmnisrv_client *client);
2020-09-23 16:40:28 +00:00
#endif