From 7686b1c407f8e78d24669971219f9bc253521744 Mon Sep 17 00:00:00 2001 From: james Date: Mon, 21 Jan 2008 19:09:56 +0000 Subject: Rewrote extract_x509_field and modified COMMON_NAME_CHAR_CLASS to allow forward slash characters ("/") in the X509 common name (Pavel Shramov). git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2638 e7ae566f-a301-0410-adde-c780ea21d3b5 --- ssl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ssl.h') diff --git a/ssl.h b/ssl.h index 5c71611..f80e083 100644 --- a/ssl.h +++ b/ssl.h @@ -282,7 +282,7 @@ /* Legal characters in an X509 or common name */ #define X509_NAME_CHAR_CLASS (CC_ALNUM|CC_UNDERBAR|CC_DASH|CC_DOT|CC_AT|CC_COLON|CC_SLASH|CC_EQUAL) -#define COMMON_NAME_CHAR_CLASS (CC_ALNUM|CC_UNDERBAR|CC_DASH|CC_DOT|CC_AT) +#define COMMON_NAME_CHAR_CLASS (CC_ALNUM|CC_UNDERBAR|CC_DASH|CC_DOT|CC_AT|CC_SLASH) /* Maximum length of OCC options string passed as part of auth handshake */ #define TLS_OPTIONS_LEN 512 -- cgit