summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-03-13 12:47:54 +1100
committerDamien Miller <djm@mindrot.org>2002-03-13 12:47:54 +1100
commit646e7cf3d7e7d4231c2d97d27c09fe5fe1d749e2 (patch)
treea693368c47d2d044514878fbb1516f87b487f78b /packet.h
parent29bdd2c9bca2737e7a246ed50fd827a6ccba0c61 (diff)
downloadopenssh-git-646e7cf3d7e7d4231c2d97d27c09fe5fe1d749e2.tar.gz
Import of Niels Provos' 20020312 ssh-complete.diff
PAM, Cygwin and OSF SIA will not work for sure
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/packet.h b/packet.h
index d6bf2aab..b87a03cf 100644
--- a/packet.h
+++ b/packet.h
@@ -56,6 +56,13 @@ void *packet_get_string(u_int *length_ptr);
void packet_disconnect(const char *fmt,...) __attribute__((format(printf, 1, 2)));
void packet_send_debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
+void set_newkeys(int mode);
+void packet_get_keyiv(int, u_char *, u_int);
+int packet_get_keycontext(int, u_char *);
+void packet_set_keycontext(int, u_char *);
+u_int32_t packet_get_seqnr(int);
+void packet_set_seqnr(int, u_int32_t);
+
void packet_write_poll(void);
void packet_write_wait(void);
int packet_have_data_to_write(void);