diff options
| author | Arne Schwabe <arne@rfc2549.org> | 2014-04-23 09:56:37 +0200 | 
|---|---|---|
| committer | Arne Schwabe <arne@rfc2549.org> | 2014-04-23 09:56:37 +0200 | 
| commit | e436c963f0976b885a7db04681344779e26dd3b5 (patch) | |
| tree | 240663106f32e02e1c34080656f4ef21a2e1776e /main/openssl/ssl/kssl.c | |
| parent | 6a99715a9b072fa249e79c98cd9f03991f0f1219 (diff) | |
Update OpenSSL to 1.0.1g and statically link OpenVPN with it
Diffstat (limited to 'main/openssl/ssl/kssl.c')
| -rw-r--r-- | main/openssl/ssl/kssl.c | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/main/openssl/ssl/kssl.c b/main/openssl/ssl/kssl.c index b820e374..fd7c67bb 100644 --- a/main/openssl/ssl/kssl.c +++ b/main/openssl/ssl/kssl.c @@ -2194,6 +2194,22 @@ krb5_error_code  kssl_build_principal_2(  	return ENOMEM;  	} +void SSL_set0_kssl_ctx(SSL *s, KSSL_CTX *kctx) +	{ +	s->kssl_ctx = kctx; +	}  + +KSSL_CTX * SSL_get0_kssl_ctx(SSL *s) +	{ +	return s->kssl_ctx; +	} + +char *kssl_ctx_get0_client_princ(KSSL_CTX *kctx) +	{ +	if (kctx) +		return kctx->client_princ; +	return NULL; +	}  #else /* !OPENSSL_NO_KRB5 */  | 
