diff options
author | guenther <> | 2020-10-11 01:13:04 +0000 |
---|---|---|
committer | guenther <> | 2020-10-11 01:13:04 +0000 |
commit | 777484b19e29edc6126b0347b81a5d02728eeda2 (patch) | |
tree | a1700996b0869b46d3eedf854b33f08067fc7923 /src/lib/libssl/ssl_tlsext.h | |
parent | 7b1ccdaed9a452cebd4c04ea28232c7ddc20a11d (diff) | |
download | openbsd-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.h | 4 |
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); | |||
134 | int tlsext_server_build(SSL *s, uint16_t msg_type, CBB *cbb); | 134 | int tlsext_server_build(SSL *s, uint16_t msg_type, CBB *cbb); |
135 | int tlsext_server_parse(SSL *s, uint16_t msg_type, CBS *cbs, int *alert); | 135 | int tlsext_server_parse(SSL *s, uint16_t msg_type, CBS *cbs, int *alert); |
136 | 136 | ||
137 | struct tls_extension *tls_extension_find(uint16_t, size_t *); | 137 | const struct tls_extension *tls_extension_find(uint16_t, size_t *); |
138 | int tlsext_extension_seen(SSL *s, uint16_t); | 138 | int tlsext_extension_seen(SSL *s, uint16_t); |
139 | __END_HIDDEN_DECLS | 139 | __END_HIDDEN_DECLS |
140 | 140 | ||