Skip to content

Commit 9a74cd5

Browse files
committed
Stub out SSL_set_client_CA_list
1 parent 23f185b commit 9a74cd5

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
@@ -429,7 +429,7 @@
429429
| `SSL_set_cert_cb` | | | | |
430430
| `SSL_set_cipher_list` | | | | :white_check_mark: |
431431
| `SSL_set_ciphersuites` | | | | |
432-
| `SSL_set_client_CA_list` | | | :white_check_mark: | |
432+
| `SSL_set_client_CA_list` | | | :white_check_mark: | :exclamation: [^stub] |
433433
| `SSL_set_connect_state` | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
434434
| `SSL_set_ct_validation_callback` [^ct] | | | | |
435435
| `SSL_set_debug` [^deprecatedin_1_1_0] | | | | |

build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ const ENTRYPOINTS: &[&str] = &[
225225
"SSL_set_alpn_protos",
226226
"SSL_set_bio",
227227
"SSL_set_cipher_list",
228+
"SSL_set_client_CA_list",
228229
"SSL_set_connect_state",
229230
"SSL_set_ex_data",
230231
"SSL_set_fd",

src/entry.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2248,6 +2248,10 @@ entry_stub! {
22482248
pub fn _SSL_get_client_CA_list(_ssl: *const SSL) -> *mut stack_st_X509_NAME;
22492249
}
22502250

2251+
entry_stub! {
2252+
pub fn _SSL_set_client_CA_list(_ssl: *mut SSL, _name_list: *mut stack_st_X509_NAME);
2253+
}
2254+
22512255
entry_stub! {
22522256
pub fn _SSL_add_file_cert_subjects_to_stack(
22532257
_stack: *mut stack_st_X509_NAME,

0 commit comments

Comments
 (0)