From 50d21c03f5b02254d8eb0953bd5e635813cfe1c1 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 26 Sep 2020 16:10:10 -0400 Subject: Free up resources throughout --- include/tls.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/tls.h') 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 -- cgit v1.2.3