X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=lib%2Frsp_tlscommon.h;h=da2092ea4a3f37d1dc901d90831e9a1b45ca3976;hb=937144b230752ac640e611cabb57387f613997bc;hp=d7e0930d25b488009cb57bcf5f06a10d941eee7a;hpb=83e82dba47aced4a93f9e431b4d8bca94c2f8517;p=radsecproxy.git diff --git a/lib/rsp_tlscommon.h b/lib/rsp_tlscommon.h index d7e0930..da2092e 100644 --- a/lib/rsp_tlscommon.h +++ b/lib/rsp_tlscommon.h @@ -1,13 +1,13 @@ -/* - * Copyright (C) 2006-2008 Stig Venaas - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - */ +/* Copyright (c) 2007-2009, UNINETT AS */ +/* See LICENSE for licensing information. */ +#include #include +#if defined (__cplusplus) +extern "C" { +#endif + struct tls { char *name; char *cacertfile; @@ -30,9 +30,14 @@ 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) +} #endif /* Local Variables: */