diff options
author | beck <> | 2017-08-12 23:39:24 +0000 |
---|---|---|
committer | beck <> | 2017-08-12 23:39:24 +0000 |
commit | ab1df86cb18a998514b14cc0f6538d76eec73884 (patch) | |
tree | 40af0a8b49ae13870bfa61315a2cd560fabe481c /src/lib/libssl/ssl_tlsext.h | |
parent | a6e24060b68da4965823f1fafe89dd446c9fa398 (diff) | |
download | openbsd-ab1df86cb18a998514b14cc0f6538d76eec73884.tar.gz openbsd-ab1df86cb18a998514b14cc0f6538d76eec73884.tar.bz2 openbsd-ab1df86cb18a998514b14cc0f6538d76eec73884.zip |
Rewrite the TLS status request extension to use the new TLS extension framework.
ok jsing@
Diffstat (limited to '')
-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); |