From 1fe107875b05cc07cf62c714c0136026eef7b93a Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 25 Oct 2020 14:50:07 -0400 Subject: Overhaul network I/O to be async for real Had to totally cut off OpenSSL from the network fd because obviously OpenSSL is just going to wreck our shit --- include/tls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/tls.h') diff --git a/include/tls.h b/include/tls.h index 81ff613..0882ff0 100644 --- a/include/tls.h +++ b/include/tls.h @@ -5,7 +5,7 @@ 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); +SSL *tls_get_ssl(struct gmnisrv_config *conf); void tls_set_host(SSL *ssl, struct gmnisrv_host *host); #endif -- cgit v1.2.3