messages.c: Add missing function documentation

Signed-off-by: Norbert Pocs <npocs@redhat.com>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
(cherry picked from commit 99bad9006e)
This commit is contained in:
Norbert Pocs
2022-09-29 11:14:15 +02:00
committed by Andreas Schneider
parent 78e79fbc35
commit 73ea9a8922

View File

@@ -1453,6 +1453,14 @@ error:
return SSH_ERROR;
}
/** @internal
*
* @brief Sends a successful channel request reply
*
* @param msg A message to reply to
*
* @returns SSH_OK on success, SSH_ERROR if an error occurred.
*/
int ssh_message_channel_request_reply_success(ssh_message msg) {
uint32_t channel;
int rc;