summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_tlsext.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_tlsext.h')
-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 1e701e941a..4f8ae0cf35 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.6 2017/08/12 21:17:03 doug Exp $ */ 1/* $OpenBSD: ssl_tlsext.h,v 1.7 2017/08/12 21:47:59 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 * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> 4 * Copyright (c) 2017 Doug Hogan <doug@openbsd.org>
@@ -23,6 +23,13 @@ int tlsext_ri_serverhello_needs(SSL *s);
23int tlsext_ri_serverhello_build(SSL *s, CBB *cbb); 23int tlsext_ri_serverhello_build(SSL *s, CBB *cbb);
24int tlsext_ri_serverhello_parse(SSL *s, CBS *cbs, int *alert); 24int tlsext_ri_serverhello_parse(SSL *s, CBS *cbs, int *alert);
25 25
26int tlsext_sigalgs_clienthello_needs(SSL *s);
27int tlsext_sigalgs_clienthello_build(SSL *s, CBB *cbb);
28int tlsext_sigalgs_clienthello_parse(SSL *s, CBS *cbs, int *alert);
29int tlsext_sigalgs_serverhello_needs(SSL *s);
30int tlsext_sigalgs_serverhello_build(SSL *s, CBB *cbb);
31int tlsext_sigalgs_serverhello_parse(SSL *s, CBS *cbs, int *alert);
32
26int tlsext_sni_clienthello_needs(SSL *s); 33int tlsext_sni_clienthello_needs(SSL *s);
27int tlsext_sni_clienthello_build(SSL *s, CBB *cbb); 34int tlsext_sni_clienthello_build(SSL *s, CBB *cbb);
28int tlsext_sni_clienthello_parse(SSL *s, CBS *cbs, int *alert); 35int tlsext_sni_clienthello_parse(SSL *s, CBS *cbs, int *alert);