diff options
Diffstat (limited to 'lib/rsp_tlscommon.h')
| -rw-r--r-- | lib/rsp_tlscommon.h | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/lib/rsp_tlscommon.h b/lib/rsp_tlscommon.h index 6819cd0..d96f553 100644 --- a/lib/rsp_tlscommon.h +++ b/lib/rsp_tlscommon.h @@ -6,6 +6,7 @@   * copyright notice and this permission notice appear in all copies.   */ +#include <netinet/in.h>  #include <openssl/ssl.h>  #if defined (__cplusplus) @@ -34,9 +35,10 @@ void ssl_init();  struct tls *tlsgettls(char *alt1, char *alt2);  SSL_CTX *tlsgetctx(uint8_t type, struct tls *t);  X509 *verifytlscert(SSL *ssl); +int subjectaltnameaddr(X509 *cert, int family, const struct in6_addr *addr); +int subjectaltnameregexp(X509 *cert, int type, const char *exact,  const regex_t *regex); +int cnregexp(X509 *cert, const char *exact, const regex_t *regex);  int verifyconfcert(X509 *cert, struct clsrvconf *conf); -int conftls_cb(struct gconffile **cf, void *arg, char *block, char *opt, char *val); -int addmatchcertattr(struct clsrvconf *conf);  #endif  #if defined (__cplusplus) | 
