diff options
Diffstat (limited to 'include/tls.h')
| -rw-r--r-- | include/tls.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/tls.h b/include/tls.h index 06d1123..81ff613 100644 --- a/include/tls.h +++ b/include/tls.h @@ -3,8 +3,9 @@ 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); +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 |
