summaryrefslogtreecommitdiff
path: root/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'buffer.h')
-rw-r--r--buffer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/buffer.h b/buffer.h
index 1fb3f1666..e2a9dd100 100644
--- a/buffer.h
+++ b/buffer.h
@@ -86,11 +86,13 @@ char *buffer_get_cstring_ret(Buffer *, u_int *);
86void *buffer_get_string_ptr_ret(Buffer *, u_int *); 86void *buffer_get_string_ptr_ret(Buffer *, u_int *);
87int buffer_get_char_ret(char *, Buffer *); 87int buffer_get_char_ret(char *, Buffer *);
88 88
89#ifdef OPENSSL_HAS_ECC
89#include <openssl/ec.h> 90#include <openssl/ec.h>
90 91
91int buffer_put_ecpoint_ret(Buffer *, const EC_GROUP *, const EC_POINT *); 92int buffer_put_ecpoint_ret(Buffer *, const EC_GROUP *, const EC_POINT *);
92void buffer_put_ecpoint(Buffer *, const EC_GROUP *, const EC_POINT *); 93void buffer_put_ecpoint(Buffer *, const EC_GROUP *, const EC_POINT *);
93int buffer_get_ecpoint_ret(Buffer *, const EC_GROUP *, EC_POINT *); 94int buffer_get_ecpoint_ret(Buffer *, const EC_GROUP *, EC_POINT *);
94void buffer_get_ecpoint(Buffer *, const EC_GROUP *, EC_POINT *); 95void buffer_get_ecpoint(Buffer *, const EC_GROUP *, EC_POINT *);
96#endif
95 97
96#endif /* BUFFER_H */ 98#endif /* BUFFER_H */