summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r--src/lib/libssl/tls13_internal.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h
index 555dd4262e..599eb200cb 100644
--- a/src/lib/libssl/tls13_internal.h
+++ b/src/lib/libssl/tls13_internal.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_internal.h,v 1.98 2022/07/17 15:49:20 jsing Exp $ */ 1/* $OpenBSD: tls13_internal.h,v 1.99 2022/07/20 06:32:24 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org>
4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
@@ -88,7 +88,7 @@ __BEGIN_HIDDEN_DECLS
88#define TLS13_INFO_CONNECT_EXIT SSL_CB_CONNECT_EXIT 88#define TLS13_INFO_CONNECT_EXIT SSL_CB_CONNECT_EXIT
89 89
90typedef void (*tls13_alert_cb)(uint8_t _alert_desc, void *_cb_arg); 90typedef void (*tls13_alert_cb)(uint8_t _alert_desc, void *_cb_arg);
91typedef ssize_t (*tls13_phh_recv_cb)(void *_cb_arg, CBS *_cbs); 91typedef ssize_t (*tls13_phh_recv_cb)(void *_cb_arg);
92typedef void (*tls13_phh_sent_cb)(void *_cb_arg); 92typedef void (*tls13_phh_sent_cb)(void *_cb_arg);
93typedef void (*tls13_handshake_message_cb)(void *_cb_arg); 93typedef void (*tls13_handshake_message_cb)(void *_cb_arg);
94typedef void (*tls13_info_cb)(void *_cb_arg, int _state, int _ret); 94typedef void (*tls13_info_cb)(void *_cb_arg, int _state, int _ret);
@@ -226,7 +226,6 @@ struct tls13_handshake_msg;
226struct tls13_handshake_msg *tls13_handshake_msg_new(void); 226struct tls13_handshake_msg *tls13_handshake_msg_new(void);
227void tls13_handshake_msg_free(struct tls13_handshake_msg *msg); 227void tls13_handshake_msg_free(struct tls13_handshake_msg *msg);
228void tls13_handshake_msg_data(struct tls13_handshake_msg *msg, CBS *cbs); 228void tls13_handshake_msg_data(struct tls13_handshake_msg *msg, CBS *cbs);
229int tls13_handshake_msg_set_buffer(struct tls13_handshake_msg *msg, CBS *cbs);
230uint8_t tls13_handshake_msg_type(struct tls13_handshake_msg *msg); 229uint8_t tls13_handshake_msg_type(struct tls13_handshake_msg *msg);
231int tls13_handshake_msg_content(struct tls13_handshake_msg *msg, CBS *cbs); 230int tls13_handshake_msg_content(struct tls13_handshake_msg *msg, CBS *cbs);
232int tls13_handshake_msg_start(struct tls13_handshake_msg *msg, CBB *body, 231int tls13_handshake_msg_start(struct tls13_handshake_msg *msg, CBB *body,