Skip to content

Commit e3cfb49

Browse files
committed
Stub out SSL_waiting_for_async
1 parent 042d19c commit e3cfb49

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

MATRIX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@
499499
| `SSL_use_psk_identity_hint` [^psk] | | | | |
500500
| `SSL_verify_client_post_handshake` | | | | :exclamation: [^stub] |
501501
| `SSL_version` | | :white_check_mark: | | :white_check_mark: |
502-
| `SSL_waiting_for_async` | | | :white_check_mark: | |
502+
| `SSL_waiting_for_async` | | | :white_check_mark: | :exclamation: [^stub] |
503503
| `SSL_want` | | | | :white_check_mark: |
504504
| `SSL_write` | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
505505
| `SSL_write_early_data` | | :white_check_mark: | :white_check_mark: | :exclamation: [^stub] |

build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ const ENTRYPOINTS: &[&str] = &[
241241
"SSL_use_PrivateKey_file",
242242
"SSL_verify_client_post_handshake",
243243
"SSL_version",
244+
"SSL_waiting_for_async",
244245
"SSL_want",
245246
"SSL_write",
246247
"SSL_write_early_data",

src/entry.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2427,6 +2427,12 @@ entry_stub! {
24272427
pub fn _SSL_COMP_get_compression_methods() -> *mut stack_st_void;
24282428
}
24292429

2430+
// No `SSL_MODE_ASYNC`
2431+
2432+
entry_stub! {
2433+
pub fn _SSL_waiting_for_async(_ssl: *mut SSL) -> c_int;
2434+
}
2435+
24302436
// ---------------------
24312437

24322438
#[cfg(test)]

0 commit comments

Comments
 (0)