summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_tlsext.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libssl/ssl_tlsext.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_tlsext.h b/src/lib/libssl/ssl_tlsext.h
index a8e478d9c0..4b0194861a 100644
--- a/src/lib/libssl/ssl_tlsext.h
+++ b/src/lib/libssl/ssl_tlsext.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_tlsext.h,v 1.1 2017/07/16 18:14:37 jsing Exp $ */ 1/* $OpenBSD: ssl_tlsext.h,v 1.2 2017/07/24 17:10:31 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -15,6 +15,13 @@
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */ 16 */
17 17
18int tlsext_ri_clienthello_needs(SSL *s);
19int tlsext_ri_clienthello_build(SSL *s, CBB *cbb);
20int tlsext_ri_clienthello_parse(SSL *s, CBS *cbs, int *alert);
21int tlsext_ri_serverhello_needs(SSL *s);
22int tlsext_ri_serverhello_build(SSL *s, CBB *cbb);
23int tlsext_ri_serverhello_parse(SSL *s, CBS *cbs, int *alert);
24
18int tlsext_sni_clienthello_needs(SSL *s); 25int tlsext_sni_clienthello_needs(SSL *s);
19int tlsext_sni_clienthello_build(SSL *s, CBB *cbb); 26int tlsext_sni_clienthello_build(SSL *s, CBB *cbb);
20int tlsext_sni_clienthello_parse(SSL *s, CBS *cbs, int *alert); 27int tlsext_sni_clienthello_parse(SSL *s, CBS *cbs, int *alert);