2020-09-24 17:51:29 -04:00
|
|
|
#ifndef GMNISRV_TLS
|
|
|
|
#define GMNISRV_TLS
|
|
|
|
|
|
|
|
struct gmnisrv_config;
|
|
|
|
|
2020-09-26 16:10:10 -04:00
|
|
|
int tls_init(struct gmnisrv_config *conf);
|
|
|
|
void tls_finish(struct gmnisrv_config *conf);
|
2020-10-25 14:50:07 -04:00
|
|
|
SSL *tls_get_ssl(struct gmnisrv_config *conf);
|
2020-09-26 16:10:10 -04:00
|
|
|
void tls_set_host(SSL *ssl, struct gmnisrv_host *host);
|
2020-09-24 17:51:29 -04:00
|
|
|
|
|
|
|
#endif
|