Skip to content

Commit d0699bb

Browse files
committed
Stub out SSL_dup_CA_list
1 parent 9a74cd5 commit d0699bb

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

MATRIX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@
295295
| `SSL_dane_tlsa_add` | | | | |
296296
| `SSL_do_handshake` | | :white_check_mark: | :white_check_mark: | :white_check_mark: |
297297
| `SSL_dup` | | | | |
298-
| `SSL_dup_CA_list` | | | :white_check_mark: | |
298+
| `SSL_dup_CA_list` | | | :white_check_mark: | :exclamation: [^stub] |
299299
| `SSL_enable_ct` [^ct] | | | | |
300300
| `SSL_export_keying_material` | | | | |
301301
| `SSL_export_keying_material_early` | | | | |

build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ const ENTRYPOINTS: &[&str] = &[
147147
"SSL_CTX_use_PrivateKey",
148148
"SSL_CTX_use_PrivateKey_file",
149149
"SSL_do_handshake",
150+
"SSL_dup_CA_list",
150151
"SSL_free",
151152
"SSL_get0_alpn_selected",
152153
"SSL_get0_next_proto_negotiated",

src/entry.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2252,6 +2252,10 @@ entry_stub! {
22522252
pub fn _SSL_set_client_CA_list(_ssl: *mut SSL, _name_list: *mut stack_st_X509_NAME);
22532253
}
22542254

2255+
entry_stub! {
2256+
pub fn _SSL_dup_CA_list(_sk: *const stack_st_X509_NAME) -> *mut stack_st_X509_NAME;
2257+
}
2258+
22552259
entry_stub! {
22562260
pub fn _SSL_add_file_cert_subjects_to_stack(
22572261
_stack: *mut stack_st_X509_NAME,

0 commit comments

Comments
 (0)