diff options
author | djm <djm> | 2002-03-13 01:47:54 +0000 |
---|---|---|
committer | djm <djm> | 2002-03-13 01:47:54 +0000 |
commit | aee643ed80571221e9fe252a9c67903324010c2b (patch) | |
tree | eceab9f1aed7bc71355ea6def4bcadf6e0f23b67 /packet.h | |
parent | 14ec045decce3c41bf1de2f432c899963471a808 (diff) | |
download | openssh-aee643ed80571221e9fe252a9c67903324010c2b.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.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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); |