mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-06 18:29:50 +09:00
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:
@@ -288,7 +288,7 @@ int sftp_server_init(sftp_session sftp)
|
||||
|
||||
SSH_LOG(SSH_LOG_PACKET, "Received SSH_FXP_INIT");
|
||||
|
||||
rc = sftp_process_init_packet(msg);
|
||||
rc = sftp_reply_version(msg);
|
||||
if (rc != SSH_OK) {
|
||||
ssh_set_error(session,
|
||||
SSH_FATAL,
|
||||
|
||||
@@ -588,7 +588,7 @@ sftp_reply_statvfs(sftp_client_message msg, sftp_statvfs_t st)
|
||||
return ret;
|
||||
}
|
||||
|
||||
int sftp_process_init_packet(sftp_client_message client_msg)
|
||||
int sftp_reply_version(sftp_client_message client_msg)
|
||||
{
|
||||
sftp_session sftp = client_msg->sftp;
|
||||
ssh_session session = sftp->session;
|
||||
@@ -849,7 +849,7 @@ const struct sftp_message_handler message_handlers[] = {
|
||||
{"rename", NULL, SSH_FXP_RENAME, process_unsupposed},
|
||||
{"readlink", NULL, SSH_FXP_READLINK, process_readlink},
|
||||
{"symlink", NULL, SSH_FXP_SYMLINK, process_symlink},
|
||||
{"init", NULL, SSH_FXP_INIT, sftp_process_init_packet},
|
||||
{"init", NULL, SSH_FXP_INIT, sftp_reply_version},
|
||||
{NULL, NULL, 0, NULL},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user