aboutsummaryrefslogtreecommitdiffstats
path: root/src/ssl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-15 21:59:23 +0000
committerlloyd <[email protected]>2010-06-15 21:59:23 +0000
commit416695f7363c4e93eaeaea23427a1fed3ad73cab (patch)
treeff1482f22f176733305583ad56855dae997d0d6d /src/ssl
parent6565cf0df1ed88a818aecf6de7635531e05c0871 (diff)
Fix a few hundred Doxygen warnings
Diffstat (limited to 'src/ssl')
-rw-r--r--src/ssl/rec_read.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ssl/rec_read.cpp b/src/ssl/rec_read.cpp
index 8b655f5bc..3c008641d 100644
--- a/src/ssl/rec_read.cpp
+++ b/src/ssl/rec_read.cpp
@@ -12,7 +12,7 @@
namespace Botan {
-/**
+/*
* Reset the state
*/
void Record_Reader::reset()
@@ -26,7 +26,7 @@ void Record_Reader::reset()
seq_no = 0;
}
-/**
+/*
* Set the version to use
*/
void Record_Reader::set_version(Version_Code version)
@@ -38,7 +38,7 @@ void Record_Reader::set_version(Version_Code version)
minor = (version & 0xFF);
}
-/**
+/*
* Set the keys for reading
*/
void Record_Reader::set_keys(const CipherSuite& suite, const SessionKeys& keys,
@@ -106,7 +106,7 @@ void Record_Reader::add_input(const byte input[], u32bit input_size)
input_queue.write(input, input_size);
}
-/**
+/*
* Retrieve the next record
*/
u32bit Record_Reader::get_record(byte& msg_type,