aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-07-06 17:38:01 +0000
committerlloyd <[email protected]>2012-07-06 17:38:01 +0000
commit53639d4d23ffd547e0d52b1a0b8f59ed24cc4712 (patch)
tree0b21fb04ef287409bef062b82c8f315378aceddb /src
parentff685c25a2b631ad3bae90378d213921631db519 (diff)
Correct Doxygen comments
Diffstat (limited to 'src')
-rw-r--r--src/tls/sessions_sqlite/tls_session_manager_sqlite.h1
-rw-r--r--src/tls/tls_channel.h9
2 files changed, 5 insertions, 5 deletions
diff --git a/src/tls/sessions_sqlite/tls_session_manager_sqlite.h b/src/tls/sessions_sqlite/tls_session_manager_sqlite.h
index dc465005e..8950007ca 100644
--- a/src/tls/sessions_sqlite/tls_session_manager_sqlite.h
+++ b/src/tls/sessions_sqlite/tls_session_manager_sqlite.h
@@ -30,6 +30,7 @@ class BOTAN_DLL Session_Manager_SQLite : public Session_Manager
public:
/**
* @param passphrase used to encrypt the session data
+ * @param rng a random number generator
* @param db_filename filename of the SQLite database file.
The table names tls_sessions and tls_sessions_metadata
will be used
diff --git a/src/tls/tls_channel.h b/src/tls/tls_channel.h
index 5e66d00db..db78cdc69 100644
--- a/src/tls/tls_channel.h
+++ b/src/tls/tls_channel.h
@@ -69,7 +69,7 @@ class BOTAN_DLL Channel
/**
* Attempt to send a heartbeat message (if negotiated with counterparty)
* @param payload will be echoed back
- * @param countents_size size of payload in bytes
+ * @param payload_size size of payload in bytes
*/
void heartbeat(const byte payload[], size_t payload_size);
@@ -93,10 +93,9 @@ class BOTAN_DLL Channel
protected:
/**
- * Send a TLS alert message. If the alert is fatal, the
- * internal state (keys, etc) will be reset
- * @param level is warning or fatal
- * @param type is the type of alert
+ * Send a TLS alert message. If the alert is fatal, the internal
+ * state (keys, etc) will be reset.
+ * @param alert the Alert to send
*/
void send_alert(const Alert& alert);