diff options
author | jsing <> | 2014-12-14 16:19:38 +0000 |
---|---|---|
committer | jsing <> | 2014-12-14 16:19:38 +0000 |
commit | 9d7627cb78b8d58f06310b08151767a7309504dc (patch) | |
tree | cbd847f515646f61373c178d71312104700ac3da /src/lib/libssl/ssl_locl.h | |
parent | 07ed3281a22942e6f12d90c428ffd29e5f4f1ddb (diff) | |
download | openbsd-9d7627cb78b8d58f06310b08151767a7309504dc.tar.gz openbsd-9d7627cb78b8d58f06310b08151767a7309504dc.tar.bz2 openbsd-9d7627cb78b8d58f06310b08151767a7309504dc.zip |
Convert all of the straight forward client handshake handling code to use
the new handshake functions.
ok miod@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 20ccaf1675..97e32de380 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_locl.h,v 1.82 2014/12/14 15:30:50 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.83 2014/12/14 16:19:38 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -653,6 +653,10 @@ long ssl3_callback_ctrl(SSL *s, int cmd, void (*fp)(void)); | |||
653 | long ssl3_ctx_callback_ctrl(SSL_CTX *s, int cmd, void (*fp)(void)); | 653 | long ssl3_ctx_callback_ctrl(SSL_CTX *s, int cmd, void (*fp)(void)); |
654 | int ssl3_pending(const SSL *s); | 654 | int ssl3_pending(const SSL *s); |
655 | 655 | ||
656 | unsigned char *ssl3_handshake_msg_start(SSL *s, uint8_t htype); | ||
657 | void ssl3_handshake_msg_finish(SSL *s, unsigned int len); | ||
658 | int ssl3_handshake_write(SSL *s); | ||
659 | |||
656 | void ssl3_record_sequence_increment(unsigned char *seq); | 660 | void ssl3_record_sequence_increment(unsigned char *seq); |
657 | int ssl3_do_change_cipher_spec(SSL *ssl); | 661 | int ssl3_do_change_cipher_spec(SSL *ssl); |
658 | long ssl3_default_timeout(void); | 662 | long ssl3_default_timeout(void); |