Add missing defines for SOFT_FAIL/HARD_FAIL in util.h

This is for these previous 2 commits:
  * 428c1b6 Allow checking ssl files are readable (check_ssl_files)
  * a03b123 Also reload SSL context on bip reload, allowing for SSL cert updates
This commit is contained in:
Loïc Gomez 2024-03-20 23:25:55 +09:00
parent a03b12319a
commit 40ac98214a
Signed by: Kyoshiro
GPG Key ID: F80C2F71E89B990A
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,9 @@
#define HASH_NOCASE 1
#define HASH_DEFAULT 0
#define SOFT_FAIL 0
#define HARD_FAIL 1
void mylog(int level, char *fmt, ...);
void _mylog(int level, char *fmt, va_list ap);
void fatal(char *fmt, ...);