1
0
mirror of https://git.sr.ht/~sircmpwn/gmnisrv synced 2024-06-22 17:45:25 +00:00
gmnisrv/include/tls.h

12 lines
265 B
C
Raw Permalink Normal View History

#ifndef GMNISRV_TLS
#define GMNISRV_TLS
struct gmnisrv_config;
2020-09-26 20:10:10 +00:00
int tls_init(struct gmnisrv_config *conf);
void tls_finish(struct gmnisrv_config *conf);
SSL *tls_get_ssl(struct gmnisrv_config *conf);
2020-09-26 20:10:10 +00:00
void tls_set_host(SSL *ssl, struct gmnisrv_host *host);
#endif