diff options
Diffstat (limited to 'packet.h')
-rw-r--r-- | packet.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: packet.h,v 1.53 2010/08/31 09:58:37 djm Exp $ */ | 1 | /* $OpenBSD: packet.h,v 1.54 2010/08/31 11:54:45 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -19,6 +19,7 @@ | |||
19 | #include <termios.h> | 19 | #include <termios.h> |
20 | 20 | ||
21 | #include <openssl/bn.h> | 21 | #include <openssl/bn.h> |
22 | #include <openssl/ec.h> | ||
22 | 23 | ||
23 | void packet_set_connection(int, int); | 24 | void packet_set_connection(int, int); |
24 | void packet_set_timeout(int, int); | 25 | void packet_set_timeout(int, int); |
@@ -42,6 +43,7 @@ void packet_put_int(u_int value); | |||
42 | void packet_put_int64(u_int64_t value); | 43 | void packet_put_int64(u_int64_t value); |
43 | void packet_put_bignum(BIGNUM * value); | 44 | void packet_put_bignum(BIGNUM * value); |
44 | void packet_put_bignum2(BIGNUM * value); | 45 | void packet_put_bignum2(BIGNUM * value); |
46 | void packet_put_ecpoint(const EC_GROUP *, const EC_POINT *); | ||
45 | void packet_put_string(const void *buf, u_int len); | 47 | void packet_put_string(const void *buf, u_int len); |
46 | void packet_put_cstring(const char *str); | 48 | void packet_put_cstring(const char *str); |
47 | void packet_put_raw(const void *buf, u_int len); | 49 | void packet_put_raw(const void *buf, u_int len); |
@@ -59,6 +61,7 @@ u_int packet_get_int(void); | |||
59 | u_int64_t packet_get_int64(void); | 61 | u_int64_t packet_get_int64(void); |
60 | void packet_get_bignum(BIGNUM * value); | 62 | void packet_get_bignum(BIGNUM * value); |
61 | void packet_get_bignum2(BIGNUM * value); | 63 | void packet_get_bignum2(BIGNUM * value); |
64 | void packet_get_ecpoint(const EC_GROUP *, EC_POINT *); | ||
62 | void *packet_get_raw(u_int *length_ptr); | 65 | void *packet_get_raw(u_int *length_ptr); |
63 | void *packet_get_string(u_int *length_ptr); | 66 | void *packet_get_string(u_int *length_ptr); |
64 | char *packet_get_cstring(u_int *length_ptr); | 67 | char *packet_get_cstring(u_int *length_ptr); |