summaryrefslogtreecommitdiff
path: root/ACE/ace/SSL/SSL_Context.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-19 18:34:48 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-19 18:34:48 +0000
commit785e3e67f167926c0c5f76a315b2708dbb190fea (patch)
tree2419f0ad51b82999400f05758ec00bc793156c9b /ACE/ace/SSL/SSL_Context.h
parentc65fe68ba44a3775214abb83a8503ca36c12ac0b (diff)
downloadATCD-785e3e67f167926c0c5f76a315b2708dbb190fea.tar.gz
Mon Feb 19 18:34:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/SSL/SSL_Context.h')
-rw-r--r--ACE/ace/SSL/SSL_Context.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/ACE/ace/SSL/SSL_Context.h b/ACE/ace/SSL/SSL_Context.h
index 2e5e07dda95..1d7067fa204 100644
--- a/ACE/ace/SSL/SSL_Context.h
+++ b/ACE/ace/SSL/SSL_Context.h
@@ -131,8 +131,7 @@ public:
* been set since key verification is performed against the
* certificate, among other things.
*/
- int private_key (const char *file_name,
- int type = SSL_FILETYPE_PEM);
+ int private_key (const char *file_name, int type = SSL_FILETYPE_PEM);
/// Verify that the private key is valid.
/**
@@ -170,11 +169,11 @@ public:
* copy of the file and path name of the most recently added
* @a ca_file or @a ca_path.
*
- * @param[in] ca_file CA file pathname. Passed to
+ * @param[in] ca_file CA file pathname. Passed to
* @c SSL_CTX_load_verify_locations() if not
* 0. If 0, behavior depends on the value of
* @a use_env_defaults.
- * @param[in] ca_dir CA directory pathname. Passed to
+ * @param[in] ca_dir CA directory pathname. Passed to
* @c SSL_CTX_load_verify_locations() if not
* 0. If 0, behavior depends on the value of
* @a use_env_defaults.
@@ -263,9 +262,7 @@ public:
* Note that this method overrides the use of the
* default_verify_mode() method.
*/
- void set_verify_peer (int strict = 0,
- int once = 1,
- int depth = 0);
+ 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
@@ -275,8 +272,6 @@ public:
// const char* ca_file_name(void) const;
// const char* ca_dir_name(void) const;
-
-
/**
* Set and query the default verify mode for this context, it is
* inherited by all the ACE_SSL objects created using the context.