forked from aniani/gmnisrv
12 lines
273 B
C
12 lines
273 B
C
#ifndef GMNISRV_TLS
|
|
#define GMNISRV_TLS
|
|
|
|
struct gmnisrv_config;
|
|
|
|
int tls_init(struct gmnisrv_config *conf);
|
|
void tls_finish(struct gmnisrv_config *conf);
|
|
SSL *tls_get_ssl(struct gmnisrv_config *conf, int fd);
|
|
void tls_set_host(SSL *ssl, struct gmnisrv_host *host);
|
|
|
|
#endif
|