aboutsummaryrefslogtreecommitdiff
path: root/externals/ace/SSL/SSL_Context.inl
diff options
context:
space:
mode:
authorsilinoron <none@none>2010-08-15 13:21:05 -0700
committersilinoron <none@none>2010-08-15 13:21:05 -0700
commit4d5296299b7a72c37cda56bfa885c82167066c3c (patch)
tree2936b23000015173a0c2d82907df9ce7fdc8f785 /externals/ace/SSL/SSL_Context.inl
parente3b8a5923d5e5512cfe6e0f02246d22146691008 (diff)
Backed out changeset: 6b66f86b01e4
Should fix windows compile. Blame me and click (but mostly click) --HG-- branch : trunk
Diffstat (limited to 'externals/ace/SSL/SSL_Context.inl')
-rw-r--r--externals/ace/SSL/SSL_Context.inl16
1 files changed, 2 insertions, 14 deletions
diff --git a/externals/ace/SSL/SSL_Context.inl b/externals/ace/SSL/SSL_Context.inl
index 7ecb3e0627e..990eab38293 100644
--- a/externals/ace/SSL/SSL_Context.inl
+++ b/externals/ace/SSL/SSL_Context.inl
@@ -1,6 +1,6 @@
// -*- C++ -*-
//
-// $Id: SSL_Context.inl 83916 2008-11-28 16:32:21Z johnnyw $
+// $Id: SSL_Context.inl 80826 2008-03-04 14:51:23Z wotte $
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
@@ -40,8 +40,7 @@ ACE_SSL_Context::check_context (void)
this->set_mode ();
}
- ::SSL_CTX_set_verify (this->context_, this->default_verify_mode (),
- this->default_verify_callback ());
+ ::SSL_CTX_set_verify (this->context_, this->default_verify_mode (), 0);
}
ACE_INLINE SSL_CTX *
@@ -99,17 +98,6 @@ ACE_SSL_Context::default_verify_mode (void) const
return this->default_verify_mode_;
}
-ACE_INLINE void
-ACE_SSL_Context::default_verify_callback (int (*callback) (int, X509_STORE_CTX*))
-{
- this->default_verify_callback_ = callback;
-}
-
-ACE_INLINE int (*ACE_SSL_Context::default_verify_callback(void) const)(int,X509_STORE_CTX *)
-{
- return this->default_verify_callback_;
-}
-
ACE_INLINE int
ACE_SSL_Context::get_mode (void) const
{