aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/s2n/tls/s2n_config.h
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-03-16 19:16:32 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-03-16 19:16:32 +0300
commit9a4fa88b2022a37c2abe42603049e49e0e83735d (patch)
tree25d03a2c73bee8033c6de28f74c51744cf3efd52 /contrib/restricted/aws/s2n/tls/s2n_config.h
parent8f60d032b1180f55355c5f2b694e47dab3653056 (diff)
downloadydb-9a4fa88b2022a37c2abe42603049e49e0e83735d.tar.gz
Update contrib/restricted/aws/s2n to 1.3.38
Diffstat (limited to 'contrib/restricted/aws/s2n/tls/s2n_config.h')
-rw-r--r--contrib/restricted/aws/s2n/tls/s2n_config.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/contrib/restricted/aws/s2n/tls/s2n_config.h b/contrib/restricted/aws/s2n/tls/s2n_config.h
index 86bdd77d8d..16eaba6183 100644
--- a/contrib/restricted/aws/s2n/tls/s2n_config.h
+++ b/contrib/restricted/aws/s2n/tls/s2n_config.h
@@ -80,12 +80,6 @@ struct s2n_config {
*/
unsigned no_signing_key : 1;
/*
- * This option exists to allow for polling the client_hello callback.
- *
- * Note: This defaults to false to ensure backwards compatibility.
- */
- unsigned client_hello_cb_enable_poll : 1;
- /*
* Whether to verify signatures locally before sending them over the wire.
* See s2n_config_set_verify_after_sign.
*/
@@ -101,6 +95,12 @@ struct s2n_config {
*/
unsigned recv_multi_record : 1;
+ /* Indicates whether the user has enabled OCSP status requests */
+ unsigned ocsp_status_requested_by_user : 1;
+
+ /* Indicates whether s2n has enabled OCSP status requests, for backwards compatibility */
+ unsigned ocsp_status_requested_by_s2n : 1;
+
struct s2n_dh_params *dhparams;
/* Needed until we can deprecate s2n_config_add_cert_chain_and_key. This is
* used to release memory allocated only in the deprecated API that the application
@@ -108,7 +108,6 @@ struct s2n_config {
struct s2n_map *domain_name_to_cert_map;
struct certs_by_type default_certs_by_type;
struct s2n_blob application_protocols;
- s2n_status_request_type status_request_type;
s2n_clock_time_nanoseconds wall_clock;
s2n_clock_time_nanoseconds monotonic_clock;