diff options
author | June McEnroe <june@causal.agency> | 2019-10-23 16:47:15 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-10-23 16:47:15 -0400 |
commit | 9fcd81df89c2736e405f4dbb9bf97fe904818c7f (patch) | |
tree | 6e20d6b1b366a39d48faf328d1b1b3e9c19dc04b /bounce.h | |
parent | Set NOSIGPIPE on server connection (diff) | |
download | pounce-9fcd81df89c2736e405f4dbb9bf97fe904818c7f.tar.gz pounce-9fcd81df89c2736e405f4dbb9bf97fe904818c7f.zip |
Add verbose flag
Diffstat (limited to '')
-rw-r--r-- | bounce.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bounce.h b/bounce.h index 2c3daa3..e81ed8f 100644 --- a/bounce.h +++ b/bounce.h @@ -30,6 +30,8 @@ struct Client { struct tls *tls; }; +bool verbose; + void listenConfig(const char *cert, const char *priv); size_t listenBind(int fds[], size_t cap, const char *host, const char *port); int listenAccept(struct tls **client, int fd); |