summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_tlsext.h
diff options
context:
space:
mode:
authorguenther <>2020-10-11 01:13:04 +0000
committerguenther <>2020-10-11 01:13:04 +0000
commit777484b19e29edc6126b0347b81a5d02728eeda2 (patch)
treea1700996b0869b46d3eedf854b33f08067fc7923 /src/lib/libssl/ssl_tlsext.h
parent7b1ccdaed9a452cebd4c04ea28232c7ddc20a11d (diff)
downloadopenbsd-777484b19e29edc6126b0347b81a5d02728eeda2.tar.gz
openbsd-777484b19e29edc6126b0347b81a5d02728eeda2.tar.bz2
openbsd-777484b19e29edc6126b0347b81a5d02728eeda2.zip
Constipate ssl3_ciphers and tls1[23]_sigalgs*, pushing them into
.data.rel.ro and .rodata respectively. ok tb@ jsing@
Diffstat (limited to 'src/lib/libssl/ssl_tlsext.h')
-rw-r--r--src/lib/libssl/ssl_tlsext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_tlsext.h b/src/lib/libssl/ssl_tlsext.h
index d98b387c5f..8e0742aa2c 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.25 2020/07/03 04:51:59 tb Exp $ */ 1/* $OpenBSD: ssl_tlsext.h,v 1.26 2020/10/11 01:13:04 guenther 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>
@@ -134,7 +134,7 @@ int tlsext_client_parse(SSL *s, uint16_t msg_type, CBS *cbs, int *alert);
134int tlsext_server_build(SSL *s, uint16_t msg_type, CBB *cbb); 134int tlsext_server_build(SSL *s, uint16_t msg_type, CBB *cbb);
135int tlsext_server_parse(SSL *s, uint16_t msg_type, CBS *cbs, int *alert); 135int tlsext_server_parse(SSL *s, uint16_t msg_type, CBS *cbs, int *alert);
136 136
137struct tls_extension *tls_extension_find(uint16_t, size_t *); 137const struct tls_extension *tls_extension_find(uint16_t, size_t *);
138int tlsext_extension_seen(SSL *s, uint16_t); 138int tlsext_extension_seen(SSL *s, uint16_t);
139__END_HIDDEN_DECLS 139__END_HIDDEN_DECLS
140 140