tlsrp

A simple TLS reverse proxy
git clone git://nihaljere.xyz/tlsrp
Log | Files | Refs | LICENSE

commit 6a1ea49f69259f636280628587654ec525337c83
parent 1ce2ccfb537e7172f8b89e6133e01661ffdfa23a
Author: Jan Klemkow <j.klemkow@wemelug.de>
Date:   Thu,  9 Jul 2020 09:21:04 +0200

add missing header sys/socket.h

Diffstat:
Mtlsrp.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/tlsrp.c b/tlsrp.c @@ -1,3 +1,5 @@ +#include <sys/socket.h> + #include <stdio.h> #include <string.h> #include <stdlib.h>