tlsrp

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

commit feaa13fcc5a2c5e85812d791a81a25b700682cfa
parent cd966ddb9febbfe667e9b377e2ef7005362f4b26
Author: Jan Klemkow <j.klemkow@wemelug.de>
Date:   Thu,  9 Jul 2020 09:43:14 +0200

usage is stict and got void as parameter

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

diff --git a/tlsrp.c b/tlsrp.c @@ -20,8 +20,8 @@ char *argv0; -void -usage() +static void +usage(void) { fprintf(stderr, "usage: %s [-h backhost] [-H fronthost] -p backport -P frontport -ca ca_path -cert cert_path -key key_path\n", argv0); fprintf(stderr, " %s -U unixsocket [-H fronthost] -P frontport -ca ca_path -cert cert_path -key key_path\n", argv0);