summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2015-01-15 02:21:31 +1100
committerDamien Miller <djm@mindrot.org>2015-01-15 02:28:36 +1100
commit72ef7c148c42db7d5632a29f137f8b87b579f2d9 (patch)
tree47954a387f4260cc8b1e0ff33bbbaf22fd6f11fc /packet.c
parent4f38c61c68ae7e3f9ee4b3c38bc86cd39f65ece9 (diff)
support --without-openssl at configure time
Disables and removes dependency on OpenSSL. Many features don't work and the set of crypto options is greatly restricted. This will only work on system with native arc4random or /dev/urandom. Considered highly experimental for now.
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/packet.c b/packet.c
index 6b326f367..d6f9ff36b 100644
--- a/packet.c
+++ b/packet.c
@@ -1612,6 +1612,7 @@ packet_get_ecpoint(const EC_GROUP *curve, EC_POINT *point)
1612 buffer_get_ecpoint(&active_state->incoming_packet, curve, point); 1612 buffer_get_ecpoint(&active_state->incoming_packet, curve, point);
1613} 1613}
1614#endif 1614#endif
1615#endif
1615 1616
1616void * 1617void *
1617packet_get_raw(u_int *length_ptr) 1618packet_get_raw(u_int *length_ptr)
@@ -1622,7 +1623,6 @@ packet_get_raw(u_int *length_ptr)
1622 *length_ptr = bytes; 1623 *length_ptr = bytes;
1623 return buffer_ptr(&active_state->incoming_packet); 1624 return buffer_ptr(&active_state->incoming_packet);
1624} 1625}
1625#endif
1626 1626
1627int 1627int
1628packet_remaining(void) 1628packet_remaining(void)