mirror of
https://github.com/curl/curl.git
synced 2026-07-26 07:17:16 +03:00
* Finish moving sftp:// into a state machine so it won't block in multi mode
* Move scp:// into a state machine so it won't block in multi mode * When available use the full directory entry from the sftp:// server
This commit is contained in:
parent
93bd512357
commit
8026d94c07
5 changed files with 1709 additions and 559 deletions
|
|
@ -45,6 +45,13 @@ ssize_t Curl_sftp_send(struct connectdata *conn, int sockindex,
|
|||
ssize_t Curl_sftp_recv(struct connectdata *conn, int sockindex,
|
||||
char *mem, size_t len);
|
||||
|
||||
#if (LIBSSH2_APINO >= 200706012030)
|
||||
CURLcode Curl_sftp_doing(struct connectdata *conn,
|
||||
bool *dophase_done);
|
||||
CURLcode Curl_scp_doing(struct connectdata *conn,
|
||||
bool *dophase_done);
|
||||
#endif (LIBSSH2_APINO >= 200706012030)
|
||||
|
||||
#endif /* USE_LIBSSH2 */
|
||||
|
||||
#endif /* __SSH_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue