summaryrefslogtreecommitdiffstats
path: root/include/tls.h
blob: 06d11236a6f4ea531d42f345988bbbcc18dbc07a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef GMNISRV_TLS
#define GMNISRV_TLS

struct gmnisrv_config;

int gmnisrv_tls_init(struct gmnisrv_config *conf);
SSL *gmnisrv_tls_get_ssl(struct gmnisrv_config *conf, int fd);
void gmnisrv_tls_set_host(SSL *ssl, struct gmnisrv_host *host);

#endif