aboutsummaryrefslogtreecommitdiff
path: root/lib/ssh.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-08-03 08:14:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-08-03 08:14:51 +0000
commit72f5d6ba46709bb2b58b5493ffa12135ea66ee00 (patch)
tree0b6cc699aa43b3b3ccd00fcf2e1f79bb4264e306 /lib/ssh.h
parent5ec786b02e0b460320b9bb4d75f5ddb8b1016656 (diff)
The SSH code now only works with libssh2 0.16 or later. Thus we must not
release the next curl until there is a libssh2 0.16 released.
Diffstat (limited to 'lib/ssh.h')
-rw-r--r--lib/ssh.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/ssh.h b/lib/ssh.h
index 4de876890..71b48db04 100644
--- a/lib/ssh.h
+++ b/lib/ssh.h
@@ -36,7 +36,6 @@ 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);
@@ -44,13 +43,10 @@ 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);
-
-#if (LIBSSH2_APINO >= 200706012030L)
CURLcode Curl_sftp_doing(struct connectdata *conn,
bool *dophase_done);
CURLcode Curl_scp_doing(struct connectdata *conn,
bool *dophase_done);
-#endif /* (LIBSSH2_APINO >= 200706012030L) */
#endif /* USE_LIBSSH2 */