diff options
author | June McEnroe <june@causal.agency> | 2019-10-27 21:50:56 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-01 01:01:17 -0400 |
commit | 0c667f1dc709c0104f244169983289ef1164f862 (patch) | |
tree | e229ab9daf6ed61a6a3dd3d3ad5521fe6c59ed97 /bounce.h | |
parent | Use capsicum (diff) | |
download | pounce-0c667f1dc709c0104f244169983289ef1164f862.tar.gz pounce-0c667f1dc709c0104f244169983289ef1164f862.zip |
Re-read cert and key from the same FILEs
Diffstat (limited to '')
-rw-r--r-- | bounce.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bounce.h b/bounce.h index 5a03af2..60a6795 100644 --- a/bounce.h +++ b/bounce.h @@ -74,7 +74,7 @@ void ringInfo(void); int ringSave(FILE *file); void ringLoad(FILE *file); -void listenConfig(const char *cert, const char *priv); +void listenConfig(FILE *cert, FILE *priv); size_t listenBind(int fds[], size_t cap, const char *host, const char *port); struct tls *listenAccept(int *fd, int bind); |