summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_tlsext.h
diff options
context:
space:
mode:
authorbeck <>2017-08-12 23:39:24 +0000
committerbeck <>2017-08-12 23:39:24 +0000
commitd14932b0913ef6f21bc09535d4eb1863708fefb6 (patch)
tree40af0a8b49ae13870bfa61315a2cd560fabe481c /src/lib/libssl/ssl_tlsext.h
parent5ba659ad744cb6a4bab19f260e7ae9033a468660 (diff)
downloadopenbsd-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.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 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);
51int tlsext_ecpf_serverhello_build(SSL *s, CBB *cbb); 51int tlsext_ecpf_serverhello_build(SSL *s, CBB *cbb);
52int tlsext_ecpf_serverhello_parse(SSL *s, CBS *cbs, int *alert); 52int tlsext_ecpf_serverhello_parse(SSL *s, CBS *cbs, int *alert);
53 53
54int tlsext_ocsp_clienthello_needs(SSL *s);
55int tlsext_ocsp_clienthello_build(SSL *s, CBB *cbb);
56int tlsext_ocsp_clienthello_parse(SSL *s, CBS *cbs, int *alert);
57int tlsext_ocsp_serverhello_needs(SSL *s);
58int tlsext_ocsp_serverhello_build(SSL *s, CBB *cbb);
59int tlsext_ocsp_serverhello_parse(SSL *s, CBS *cbs, int *alert);
60
54int tlsext_sessionticket_clienthello_needs(SSL *s); 61int tlsext_sessionticket_clienthello_needs(SSL *s);
55int tlsext_sessionticket_clienthello_build(SSL *s, CBB *cbb); 62int tlsext_sessionticket_clienthello_build(SSL *s, CBB *cbb);
56int tlsext_sessionticket_clienthello_parse(SSL *s, CBS *cbs, int *alert); 63int tlsext_sessionticket_clienthello_parse(SSL *s, CBS *cbs, int *alert);