s/libssh2_channel_write_ex/_libssh2_channel_write internally
Этот коммит содержится в:
родитель
5e5ead00b4
Коммит
5bb1fb5cbc
@ -442,7 +442,7 @@ libssh2_publickey_init(LIBSSH2_SESSION * session)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (session->pkeyInit_state == libssh2_NB_state_sent2) {
|
if (session->pkeyInit_state == libssh2_NB_state_sent2) {
|
||||||
rc = libssh2_channel_write_ex(session->pkeyInit_channel, 0,
|
rc = _libssh2_channel_write(session->pkeyInit_channel, 0,
|
||||||
(char *) buffer, (s - buffer));
|
(char *) buffer, (s - buffer));
|
||||||
if (rc == PACKET_EAGAIN) {
|
if (rc == PACKET_EAGAIN) {
|
||||||
libssh2_error(session, LIBSSH2_ERROR_EAGAIN,
|
libssh2_error(session, LIBSSH2_ERROR_EAGAIN,
|
||||||
@ -679,7 +679,7 @@ libssh2_publickey_add_ex(LIBSSH2_PUBLICKEY * pkey, const unsigned char *name,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (pkey->add_state == libssh2_NB_state_created) {
|
if (pkey->add_state == libssh2_NB_state_created) {
|
||||||
rc = libssh2_channel_write_ex(channel, 0, (char *) pkey->add_packet,
|
rc = _libssh2_channel_write(channel, 0, (char *) pkey->add_packet,
|
||||||
(pkey->add_s - pkey->add_packet));
|
(pkey->add_s - pkey->add_packet));
|
||||||
if (rc == PACKET_EAGAIN) {
|
if (rc == PACKET_EAGAIN) {
|
||||||
return rc;
|
return rc;
|
||||||
@ -755,7 +755,7 @@ libssh2_publickey_remove_ex(LIBSSH2_PUBLICKEY * pkey,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (pkey->remove_state == libssh2_NB_state_created) {
|
if (pkey->remove_state == libssh2_NB_state_created) {
|
||||||
rc = libssh2_channel_write_ex(channel, 0, (char *) pkey->remove_packet,
|
rc = _libssh2_channel_write(channel, 0, (char *) pkey->remove_packet,
|
||||||
(pkey->remove_s - pkey->remove_packet));
|
(pkey->remove_s - pkey->remove_packet));
|
||||||
if (rc == PACKET_EAGAIN) {
|
if (rc == PACKET_EAGAIN) {
|
||||||
return rc;
|
return rc;
|
||||||
@ -816,7 +816,7 @@ libssh2_publickey_list_fetch(LIBSSH2_PUBLICKEY * pkey, unsigned long *num_keys,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (pkey->listFetch_state == libssh2_NB_state_created) {
|
if (pkey->listFetch_state == libssh2_NB_state_created) {
|
||||||
rc = libssh2_channel_write_ex(channel, 0,
|
rc = _libssh2_channel_write(channel, 0,
|
||||||
(char *) pkey->listFetch_buffer,
|
(char *) pkey->listFetch_buffer,
|
||||||
(pkey->listFetch_s -
|
(pkey->listFetch_s -
|
||||||
pkey->listFetch_buffer));
|
pkey->listFetch_buffer));
|
||||||
|
10
src/scp.c
10
src/scp.c
@ -357,7 +357,7 @@ libssh2_scp_recv(LIBSSH2_SESSION * session, const char *path, struct stat * sb)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (session->scpRecv_state == libssh2_NB_state_sent1) {
|
if (session->scpRecv_state == libssh2_NB_state_sent1) {
|
||||||
rc = libssh2_channel_write_ex(session->scpRecv_channel, 0,
|
rc = _libssh2_channel_write(session->scpRecv_channel, 0,
|
||||||
(char *) session->scpRecv_response, 1);
|
(char *) session->scpRecv_response, 1);
|
||||||
if (rc == PACKET_EAGAIN) {
|
if (rc == PACKET_EAGAIN) {
|
||||||
libssh2_error(session, LIBSSH2_ERROR_EAGAIN,
|
libssh2_error(session, LIBSSH2_ERROR_EAGAIN,
|
||||||
@ -557,7 +557,7 @@ libssh2_scp_recv(LIBSSH2_SESSION * session, const char *path, struct stat * sb)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (session->scpRecv_state == libssh2_NB_state_sent3) {
|
if (session->scpRecv_state == libssh2_NB_state_sent3) {
|
||||||
rc = libssh2_channel_write_ex(session->scpRecv_channel, 0,
|
rc = _libssh2_channel_write(session->scpRecv_channel, 0,
|
||||||
(char *) session->
|
(char *) session->
|
||||||
scpRecv_response, 1);
|
scpRecv_response, 1);
|
||||||
if (rc == PACKET_EAGAIN) {
|
if (rc == PACKET_EAGAIN) {
|
||||||
@ -720,7 +720,7 @@ libssh2_scp_recv(LIBSSH2_SESSION * session, const char *path, struct stat * sb)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (session->scpRecv_state == libssh2_NB_state_sent6) {
|
if (session->scpRecv_state == libssh2_NB_state_sent6) {
|
||||||
rc = libssh2_channel_write_ex(session->scpRecv_channel, 0,
|
rc = _libssh2_channel_write(session->scpRecv_channel, 0,
|
||||||
(char *) session->
|
(char *) session->
|
||||||
scpRecv_response, 1);
|
scpRecv_response, 1);
|
||||||
if (rc == PACKET_EAGAIN) {
|
if (rc == PACKET_EAGAIN) {
|
||||||
@ -887,7 +887,7 @@ libssh2_scp_send_ex(LIBSSH2_SESSION * session, const char *path, int mode,
|
|||||||
/* Send mtime and atime to be used for file */
|
/* Send mtime and atime to be used for file */
|
||||||
if (mtime || atime) {
|
if (mtime || atime) {
|
||||||
if (session->scpSend_state == libssh2_NB_state_sent2) {
|
if (session->scpSend_state == libssh2_NB_state_sent2) {
|
||||||
rc = libssh2_channel_write_ex(session->scpSend_channel, 0,
|
rc = _libssh2_channel_write(session->scpSend_channel, 0,
|
||||||
(char *) session->scpSend_response,
|
(char *) session->scpSend_response,
|
||||||
session->scpSend_response_len);
|
session->scpSend_response_len);
|
||||||
if (rc == PACKET_EAGAIN) {
|
if (rc == PACKET_EAGAIN) {
|
||||||
@ -945,7 +945,7 @@ libssh2_scp_send_ex(LIBSSH2_SESSION * session, const char *path, int mode,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (session->scpSend_state == libssh2_NB_state_sent5) {
|
if (session->scpSend_state == libssh2_NB_state_sent5) {
|
||||||
rc = libssh2_channel_write_ex(session->scpSend_channel, 0,
|
rc = _libssh2_channel_write(session->scpSend_channel, 0,
|
||||||
(char *) session->scpSend_response,
|
(char *) session->scpSend_response,
|
||||||
session->scpSend_response_len);
|
session->scpSend_response_len);
|
||||||
if (rc == PACKET_EAGAIN) {
|
if (rc == PACKET_EAGAIN) {
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user