From d40f2b204b78ace5c2c9c3007887571ca5a2ec11 Mon Sep 17 00:00:00 2001 From: james Date: Tue, 8 Nov 2005 12:50:11 +0000 Subject: Added ENABLE_INLINE_FILES feature. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@784 e7ae566f-a301-0410-adde-c780ea21d3b5 --- options.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'options.h') diff --git a/options.h b/options.h index 85f989d..aa2b1c1 100644 --- a/options.h +++ b/options.h @@ -82,6 +82,10 @@ struct options_pre_pull #endif +#if ENABLE_INLINE_FILES +#define INLINE_FILE_TAG "[[INLINE]]" +#endif + /* Command line options */ struct options { @@ -378,6 +382,14 @@ struct options const char *tls_verify; const char *tls_remote; const char *crl_file; + +#if ENABLE_INLINE_FILES + const char *ca_file_inline; + const char *cert_file_inline; + char *priv_key_file_inline; + const char *dh_file_inline; +#endif + int ns_cert_type; /* set to 0, NS_SSL_SERVER, or NS_SSL_CLIENT */ const char *pkcs11_providers[MAX_PARMS]; const char *pkcs11_sign_mode[MAX_PARMS]; -- cgit