diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2021-05-28 00:26:37 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2021-05-28 00:26:37 -0300 |
commit | 390240ac622ab1d81704bad694ba6187738ae9b8 (patch) | |
tree | 7c6e3c68f411fea2fe5c6f3dd31a63456db41074 /src/common/hexchat.h | |
parent | a97299020b27894e3390ecc52d6f7a4e2c55d818 (diff) |
Initial TLS-SRP support
Diffstat (limited to 'src/common/hexchat.h')
-rw-r--r-- | src/common/hexchat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/hexchat.h b/src/common/hexchat.h index d8effa1f..7ea25f71 100644 --- a/src/common/hexchat.h +++ b/src/common/hexchat.h @@ -584,6 +584,9 @@ typedef struct server #ifdef USE_OPENSSL unsigned int use_ssl:1; /* is server SSL capable? */ unsigned int accept_invalid_cert:1;/* ignore result of server's cert. verify */ +#ifndef OPENSSL_NO_SRP + unsigned int use_pake:1;/* ignore lack of cert */ +#endif #endif } server; |