aboutsummaryrefslogtreecommitdiff
path: root/externals/ace/SSL/SSL_Context.h
diff options
context:
space:
mode:
authorsilinoron <none@none>2010-08-15 13:21:26 -0700
committersilinoron <none@none>2010-08-15 13:21:26 -0700
commit05e6147621b53a6d90b57469660c2c656f83196d (patch)
tree3bbecb6641edf2e47501a854e6c667421da44b23 /externals/ace/SSL/SSL_Context.h
parente1fe290b21dadd85397eb4e415df6b2dc66aa972 (diff)
parent4d5296299b7a72c37cda56bfa885c82167066c3c (diff)
merge
--HG-- branch : trunk
Diffstat (limited to 'externals/ace/SSL/SSL_Context.h')
-rw-r--r--externals/ace/SSL/SSL_Context.h16
1 files changed, 3 insertions, 13 deletions
diff --git a/externals/ace/SSL/SSL_Context.h b/externals/ace/SSL/SSL_Context.h
index 003d6042c5b..bc3cb329042 100644
--- a/externals/ace/SSL/SSL_Context.h
+++ b/externals/ace/SSL/SSL_Context.h
@@ -4,7 +4,7 @@
/**
* @file SSL_Context.h
*
- * $Id: SSL_Context.h 83916 2008-11-28 16:32:21Z johnnyw $
+ * $Id: SSL_Context.h 80826 2008-03-04 14:51:23Z wotte $
*
* @author Carlos O'Ryan <coryan@ece.uci.edu>
* @author Ossama Othman <ossama@dre.vanderbilt.edu>
@@ -264,6 +264,7 @@ public:
*/
void set_verify_peer (int strict = 0, int once = 1, int depth = 0);
+
/// TODO: a implementation that will lookup the CTX table for the list
/// of files and paths etc.
/// Query the location of trusted certification authority
@@ -280,14 +281,6 @@ public:
int default_verify_mode (void) const;
/**
- * Set and query the default verify callback for this context, it is
- * inherited by all the ACE_SSL objects created using the context.
- * It can be overriden on a per-ACE_SSL object.
- */
- void default_verify_callback (int (*callback) (int, X509_STORE_CTX *));
- int (*default_verify_callback(void) const) (int,X509_STORE_CTX *);
-
- /**
* @name OpenSSL Random Number Generator Seed Related Methods
*
* These are methods that can be used to seed OpenSSL's
@@ -361,7 +354,7 @@ private:
/// Cache the mode so we can answer fast
int mode_;
- /// The private key, certificate, and Diffie-Hellman parameters files
+ /// The private key, certificate, and Diffie-Hellman paramters files
ACE_SSL_Data_File private_key_;
ACE_SSL_Data_File certificate_;
ACE_SSL_Data_File dh_params_;
@@ -369,9 +362,6 @@ private:
/// The default verify mode.
int default_verify_mode_;
- /// The default verify callback.
- int (*default_verify_callback_)(int, X509_STORE_CTX *);
-
/// count of successful CA load attempts
int have_ca_;