Rename the sftp_process_init_packet()

... to better describe the function, which is only replying to the client with
our version and extensions.

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
This commit is contained in:
Jakub Jelen
2023-03-24 11:54:50 +01:00
parent 1fe98800d2
commit 492317efe9
3 changed files with 5 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ sftp_attributes sftp_parse_attr(sftp_session session,
ssh_buffer buf,
int expectname);
/**
* @brief Handle the sftp_init request from client.
* @brief Reply to the SSH_FXP_INIT message with the SSH_FXP_VERSION message
*
* @param client_msg The pointer to client message.
*
@@ -41,7 +41,7 @@ sftp_attributes sftp_parse_attr(sftp_session session,
*
* @see sftp_get_error()
*/
int sftp_process_init_packet(sftp_client_message client_msg);
int sftp_reply_version(sftp_client_message client_msg);
/**
* @brief Decode the data from channel buffer into sftp read_packet.
*