Skip to content

Commit

Permalink
admin: update used symbols for nginx 1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cpu committed Jun 18, 2024
1 parent 5b164a7 commit 5e56646
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion rustls-libssl/admin/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def read_impls():
TLS_client_method
""".split())

# from ubuntu nginx 1.18.0-6ubuntu14.4
# Combined requirements of nginx 1.18.0-6ubuntu14.4, and nginx 1.24.0
# extracted by running with LD_DEBUG=all
NGINX = set("""
d2i_SSL_SESSION
Expand All @@ -134,6 +134,13 @@ def read_impls():
SSL_CIPHER_find
SSL_CIPHER_get_name
SSL_clear_options
SSL_CONF_cmd
SSL_CONF_cmd_value_type
SSL_CONF_CTX_finish
SSL_CONF_CTX_free
SSL_CONF_CTX_new
SSL_CONF_CTX_set_flags
SSL_CONF_CTX_set_ssl_ctx
SSL_ctrl
SSL_CTX_callback_ctrl
SSL_CTX_clear_options
Expand Down Expand Up @@ -168,12 +175,14 @@ def read_impls():
SSL_CTX_set_timeout
SSL_CTX_set_verify_depth
SSL_CTX_set_verify
SSL_CTX_set_verify_depth
SSL_CTX_use_certificate
SSL_CTX_use_PrivateKey
SSL_do_handshake
SSL_free
SSL_get0_alpn_selected
SSL_get0_next_proto_negotiated
SSL_get0_verified_chain
SSL_get1_peer_certificate
SSL_get1_session
SSL_get_certificate
Expand All @@ -182,10 +191,12 @@ def read_impls():
SSL_get_ex_data
SSL_get_ex_data_X509_STORE_CTX_idx
SSL_get_options
SSL_get_peer_cert_chain
SSL_get_rbio
SSL_get_servername
SSL_get_session
SSL_get_shutdown
SSL_get_SSL_CTX
SSL_get_verify_result
SSL_get_version
SSL_get_wbio
Expand All @@ -195,10 +206,17 @@ def read_impls():
SSL_new
SSL_read_early_data
SSL_read
SSL_read_early_data
SSL_select_next_proto
SSL_sendfile
SSL_SESSION_free
SSL_SESSION_get_id
SSL_SESSION_get_time
SSL_SESSION_get_timeout
SSL_session_reused
SSL_SESSION_set1_id_context
SSL_SESSION_set_time
SSL_SESSION_set_timeout
SSL_SESSION_up_ref
SSL_set_accept_state
SSL_set_connect_state
Expand All @@ -211,11 +229,14 @@ def read_impls():
SSL_set_SSL_CTX
SSL_set_verify_depth
SSL_set_verify
SSL_set_verify_depth
SSL_shutdown
SSL_use_certificate
SSL_use_PrivateKey
SSL_version
SSL_write_early_data
SSL_write
SSL_write_early_data
TLS_method
""".split())

Expand Down

0 comments on commit 5e56646

Please sign in to comment.