mirror of
https://github.com/curl/curl.git
synced 2026-08-24 21:43:32 +03:00
Added per-protocol callback static tables, replacing callback ptr storage
in the connectdata structure by a single handler table ptr.
This commit is contained in:
parent
2741f97a69
commit
07b6e7363d
19 changed files with 713 additions and 410 deletions
14
lib/ssh.h
14
lib/ssh.h
|
|
@ -25,28 +25,18 @@
|
|||
***************************************************************************/
|
||||
|
||||
#ifdef USE_LIBSSH2
|
||||
|
||||
CURLcode Curl_ssh_connect(struct connectdata *conn, bool *done);
|
||||
CURLcode Curl_ssh_multi_statemach(struct connectdata *conn, bool *done);
|
||||
|
||||
CURLcode Curl_scp_do(struct connectdata *conn, bool *done);
|
||||
CURLcode Curl_scp_done(struct connectdata *conn, CURLcode, bool premature);
|
||||
extern const struct Curl_handler Curl_handler_scp;
|
||||
extern const struct Curl_handler Curl_handler_sftp;
|
||||
|
||||
ssize_t Curl_scp_send(struct connectdata *conn, int sockindex,
|
||||
void *mem, size_t len);
|
||||
ssize_t Curl_scp_recv(struct connectdata *conn, int sockindex,
|
||||
char *mem, size_t len);
|
||||
CURLcode Curl_sftp_do(struct connectdata *conn, bool *done);
|
||||
CURLcode Curl_sftp_done(struct connectdata *conn, CURLcode, bool premature);
|
||||
|
||||
ssize_t Curl_sftp_send(struct connectdata *conn, int sockindex,
|
||||
void *mem, size_t len);
|
||||
ssize_t Curl_sftp_recv(struct connectdata *conn, int sockindex,
|
||||
char *mem, size_t len);
|
||||
CURLcode Curl_sftp_doing(struct connectdata *conn,
|
||||
bool *dophase_done);
|
||||
CURLcode Curl_scp_doing(struct connectdata *conn,
|
||||
bool *dophase_done);
|
||||
|
||||
#endif /* USE_LIBSSH2 */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue