1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-11 03:42:35 +03:00

messages.c: Add missing function documentation

Signed-off-by: Norbert Pocs <npocs@redhat.com>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
Norbert Pocs
2022-09-29 11:14:15 +02:00
parent c17b8f1fb2
commit 99bad9006e

View File

@@ -1453,6 +1453,14 @@ error:
return SSH_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) { int ssh_message_channel_request_reply_success(ssh_message msg) {
uint32_t channel; uint32_t channel;
int rc; int rc;