aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2010-01-08 22:33:58 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2010-01-08 22:33:58 +0100
commit40bcc0bed8f3382fbdcc9b2d904b0c7bd839412d (patch)
treed3526b8c9b56899425dd032ba5246f6039bd9ade /include
parent74009e2be5ca6914f478b8022a27cd8948da4c57 (diff)
downloadlibssh-40bcc0bed8f3382fbdcc9b2d904b0c7bd839412d.tar.gz
libssh-40bcc0bed8f3382fbdcc9b2d904b0c7bd839412d.tar.xz
libssh-40bcc0bed8f3382fbdcc9b2d904b0c7bd839412d.zip
No more packet_read2() !
Diffstat (limited to 'include')
-rw-r--r--include/libssh/packet.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libssh/packet.h b/include/libssh/packet.h
index c58b7ede..fc665823 100644
--- a/include/libssh/packet.h
+++ b/include/libssh/packet.h
@@ -31,7 +31,10 @@ typedef struct packet_struct {
int packet_send(ssh_session session);
+#ifdef WITH_SSH1
int packet_read(ssh_session session);
+#endif
+
int packet_translate(ssh_session session);
/* TODO: remove it when packet_wait is stripped out from libssh */
#ifdef WITH_SSH1