tlsrp

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

commit 1a49c48c6978f0e5006df1cb97bd01e5b5e239c3
parent 833913495699f36234dd1574e532e6f752a79146
Author: Jan Klemkow <j.klemkow@wemelug.de>
Date:   Sun, 26 Jul 2020 10:21:29 +0200

reorder header files

 - sys headers
 - stdlibc headers
 - third party headers

Diffstat:
Mtlsrp.c | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/tlsrp.c b/tlsrp.c @@ -1,12 +1,13 @@ #include <sys/socket.h> +#include <sys/un.h> +#include <netdb.h> +#include <poll.h> #include <stdio.h> -#include <string.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> -#include <sys/un.h> -#include <netdb.h> -#include <poll.h> + #include <tls.h> #include "util.h"