diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-07-28 16:35:51 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-07 16:50:43 +0200 |
commit | 4d51150ca0aae979718ac10030df85421b763cd1 (patch) | |
tree | a824a83feefca6695fbe1072b3d724290b07af1f /src/IO/tls.h | |
parent | a9950b3aca2a264e0ee1da1e2a29d3be11e6606c (diff) |
Make Dillo C99 standard compliant
Reviewed-by: dogma
Diffstat (limited to 'src/IO/tls.h')
-rw-r--r-- | src/IO/tls.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/IO/tls.h b/src/IO/tls.h index 25da6ea6..500b2421 100644 --- a/src/IO/tls.h +++ b/src/IO/tls.h @@ -31,13 +31,13 @@ extern "C" { #define TLS_CONNECT_NOT_YET 0 #define TLS_CONNECT_READY 1 -void a_Tls_init(); +void a_Tls_init(void); int a_Tls_certificate_is_clean(const DilloUrl *url); int a_Tls_connect_ready(const DilloUrl *url); void a_Tls_reset_server_state(const DilloUrl *url); void a_Tls_connect(int fd, const DilloUrl *url); void *a_Tls_connection(int fd); -void a_Tls_freeall(); +void a_Tls_freeall(void); void a_Tls_close_by_fd(int fd); int a_Tls_read(void *conn, void *buf, size_t len); int a_Tls_write(void *conn, void *buf, size_t len); |