diff options
author | Damien Miller <djm@mindrot.org> | 2008-07-11 09:36:48 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2008-07-11 09:36:48 +0200 |
commit | b61f3fc31ff6eb1693431e21fb1086c33eb66549 (patch) | |
tree | 53538eed568ff248b0f76ab019db53a0a7525368 /packet.h | |
parent | - markus@cvs.openbsd.org 2008/07/10 18:05:58 (diff) | |
download | openssh-b61f3fc31ff6eb1693431e21fb1086c33eb66549.tar.xz openssh-b61f3fc31ff6eb1693431e21fb1086c33eb66549.zip |
- markus@cvs.openbsd.org 2008/07/10 18:08:11
[clientloop.c monitor.c monitor_wrap.c packet.c packet.h sshd.c]
sync v1 and v2 traffic accounting; add it to sshd, too;
ok djm@, dtucker@
Diffstat (limited to 'packet.h')
-rw-r--r-- | packet.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: packet.h,v 1.48 2008/06/12 20:38:28 dtucker Exp $ */ +/* $OpenBSD: packet.h,v 1.49 2008/07/10 18:08:11 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -68,8 +68,8 @@ int packet_get_keyiv_len(int); void packet_get_keyiv(int, u_char *, u_int); int packet_get_keycontext(int, u_char *); void packet_set_keycontext(int, u_char *); -void packet_get_state(int, u_int32_t *, u_int64_t *, u_int32_t *); -void packet_set_state(int, u_int32_t, u_int64_t, u_int32_t); +void packet_get_state(int, u_int32_t *, u_int64_t *, u_int32_t *, u_int64_t *); +void packet_set_state(int, u_int32_t, u_int64_t, u_int32_t, u_int64_t); int packet_get_ssh1_cipher(void); void packet_set_iv(int, u_char *); |