diff options
author | beck <> | 2017-08-12 23:39:24 +0000 |
---|---|---|
committer | beck <> | 2017-08-12 23:39:24 +0000 |
commit | d14932b0913ef6f21bc09535d4eb1863708fefb6 (patch) | |
tree | 40af0a8b49ae13870bfa61315a2cd560fabe481c /src/lib/libssl/ssl_tlsext.h | |
parent | 5ba659ad744cb6a4bab19f260e7ae9033a468660 (diff) | |
download | openbsd-d14932b0913ef6f21bc09535d4eb1863708fefb6.tar.gz openbsd-d14932b0913ef6f21bc09535d4eb1863708fefb6.tar.bz2 openbsd-d14932b0913ef6f21bc09535d4eb1863708fefb6.zip |
Rewrite the TLS status request extension to use the new TLS extension framework.
ok jsing@
Diffstat (limited to 'src/lib/libssl/ssl_tlsext.h')
-rw-r--r-- | src/lib/libssl/ssl_tlsext.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_tlsext.h b/src/lib/libssl/ssl_tlsext.h index 4f8ae0cf35..bba8bdbea9 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.7 2017/08/12 21:47:59 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_tlsext.h,v 1.8 2017/08/12 23:38:12 beck 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> |
@@ -51,6 +51,13 @@ int tlsext_ecpf_serverhello_needs(SSL *s); | |||
51 | int tlsext_ecpf_serverhello_build(SSL *s, CBB *cbb); | 51 | int tlsext_ecpf_serverhello_build(SSL *s, CBB *cbb); |
52 | int tlsext_ecpf_serverhello_parse(SSL *s, CBS *cbs, int *alert); | 52 | int tlsext_ecpf_serverhello_parse(SSL *s, CBS *cbs, int *alert); |
53 | 53 | ||
54 | int tlsext_ocsp_clienthello_needs(SSL *s); | ||
55 | int tlsext_ocsp_clienthello_build(SSL *s, CBB *cbb); | ||
56 | int tlsext_ocsp_clienthello_parse(SSL *s, CBS *cbs, int *alert); | ||
57 | int tlsext_ocsp_serverhello_needs(SSL *s); | ||
58 | int tlsext_ocsp_serverhello_build(SSL *s, CBB *cbb); | ||
59 | int tlsext_ocsp_serverhello_parse(SSL *s, CBS *cbs, int *alert); | ||
60 | |||
54 | int tlsext_sessionticket_clienthello_needs(SSL *s); | 61 | int tlsext_sessionticket_clienthello_needs(SSL *s); |
55 | int tlsext_sessionticket_clienthello_build(SSL *s, CBB *cbb); | 62 | int tlsext_sessionticket_clienthello_build(SSL *s, CBB *cbb); |
56 | int tlsext_sessionticket_clienthello_parse(SSL *s, CBS *cbs, int *alert); | 63 | int tlsext_sessionticket_clienthello_parse(SSL *s, CBS *cbs, int *alert); |