summaryrefslogtreecommitdiff
path: root/cryptlib.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-01-01 21:08:21 -0500
committerJeffrey Walton <noloader@gmail.com>2020-01-01 21:08:21 -0500
commit20a4626b5d61688037ae26b65d34757a8abc0fca (patch)
tree01547d932623e6768cfd0e387fecd7a61003fe13 /cryptlib.h
parent1cf770628d9f019b9773ded774340b3cab5f7cda (diff)
downloadcryptopp-git-20a4626b5d61688037ae26b65d34757a8abc0fca.tar.gz
Update documentation
Diffstat (limited to 'cryptlib.h')
-rw-r--r--cryptlib.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/cryptlib.h b/cryptlib.h
index 2f163401..2f27736b 100644
--- a/cryptlib.h
+++ b/cryptlib.h
@@ -2027,6 +2027,7 @@ public:
virtual bool GetNextMessage();
/// \brief Skip a number of meessages
+ /// \param count number of messages to skip
/// \return 0 if the requested number of messages was skipped, non-0 otherwise
/// \details SkipMessages() skips count number of messages. If there is an AttachedTransformation()
/// then SkipMessages() is called on the attached transformation. If there is no attached
@@ -2047,10 +2048,10 @@ public:
/// \brief Copy messages from this object to another BufferedTransformation
/// \param target the destination BufferedTransformation
- /// \param count the number of messages to transfer
- /// \param channel the channel on which the transfer should occur
+ /// \param count the number of messages to copy
+ /// \param channel the channel on which the copy should occur
/// \return the number of bytes that remain in the current transfer block (i.e., bytes not transferred)
- /// \details CopyMessagesTo copies messages from this object and copies them to the destination.
+ /// \details CopyMessagesTo copies messages from this object to the destination.
/// If all bytes are not transferred for a message, then processing stops and the number of remaining
/// bytes is returned. CopyMessagesTo() does not proceed to the next message.
/// \details A return value of 0 indicates all messages were successfully copied.