diff options
author | Darren Tucker <dtucker@zip.com.au> | 2009-06-21 18:16:26 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2009-06-21 18:16:26 +1000 |
commit | 761c38918aecbbe2df97d13aea29c6bbf9212617 (patch) | |
tree | 8c2936f107ddc4954e2e39be824681960d28503f /packet.h | |
parent | 5b48cdd882579f60217b9aa9a0c09e61e739a917 (diff) |
- andreas@cvs.openbsd.org 2009/05/27 06:38:16
[sshconnect.h sshconnect.c]
Un-static ssh_exchange_identification(), part of a larger change from
Martin Forssen and needed for upcoming changes.
ok markus@
Diffstat (limited to 'packet.h')
-rw-r--r-- | packet.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: packet.h,v 1.50 2009/05/25 06:48:01 andreas Exp $ */ | 1 | /* $OpenBSD: packet.h,v 1.51 2009/05/27 06:36:07 andreas Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -39,6 +39,7 @@ void packet_set_authenticated(void); | |||
39 | void packet_start(u_char); | 39 | void packet_start(u_char); |
40 | void packet_put_char(int ch); | 40 | void packet_put_char(int ch); |
41 | void packet_put_int(u_int value); | 41 | void packet_put_int(u_int value); |
42 | void packet_put_int64(u_int64_t value); | ||
42 | void packet_put_bignum(BIGNUM * value); | 43 | void packet_put_bignum(BIGNUM * value); |
43 | void packet_put_bignum2(BIGNUM * value); | 44 | void packet_put_bignum2(BIGNUM * value); |
44 | void packet_put_string(const void *buf, u_int len); | 45 | void packet_put_string(const void *buf, u_int len); |
@@ -55,6 +56,7 @@ int packet_read_poll_seqnr(u_int32_t *seqnr_p); | |||
55 | 56 | ||
56 | u_int packet_get_char(void); | 57 | u_int packet_get_char(void); |
57 | u_int packet_get_int(void); | 58 | u_int packet_get_int(void); |
59 | u_int64_t packet_get_int64(void); | ||
58 | void packet_get_bignum(BIGNUM * value); | 60 | void packet_get_bignum(BIGNUM * value); |
59 | void packet_get_bignum2(BIGNUM * value); | 61 | void packet_get_bignum2(BIGNUM * value); |
60 | void *packet_get_raw(u_int *length_ptr); | 62 | void *packet_get_raw(u_int *length_ptr); |