diff options
author | silinoron <none@none> | 2010-08-15 13:21:05 -0700 |
---|---|---|
committer | silinoron <none@none> | 2010-08-15 13:21:05 -0700 |
commit | 4d5296299b7a72c37cda56bfa885c82167066c3c (patch) | |
tree | 2936b23000015173a0c2d82907df9ce7fdc8f785 /externals/ace/SSL/SSL_Context.h | |
parent | e3b8a5923d5e5512cfe6e0f02246d22146691008 (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.h')
-rw-r--r-- | externals/ace/SSL/SSL_Context.h | 16 |
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_; |