Skip to content

Commit 77989df

Browse files
committed
Stub out SSL_get_changed_async_fds
1 parent 98ebfdb commit 77989df

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

MATRIX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322
| `SSL_get_all_async_fds` | | | :white_check_mark: | :exclamation: [^stub] |
323323
| `SSL_get_async_status` | | | | |
324324
| `SSL_get_certificate` | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
325-
| `SSL_get_changed_async_fds` | | | :white_check_mark: | |
325+
| `SSL_get_changed_async_fds` | | | :white_check_mark: | :exclamation: [^stub] |
326326
| `SSL_get_cipher_list` | | | | |
327327
| `SSL_get_ciphers` | | | | :exclamation: [^stub] |
328328
| `SSL_get_client_CA_list` | | | | :exclamation: [^stub] |

build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ const ENTRYPOINTS: &[&str] = &[
155155
"SSL_get1_session",
156156
"SSL_get_all_async_fds",
157157
"SSL_get_certificate",
158+
"SSL_get_changed_async_fds",
158159
"SSL_get_ciphers",
159160
"SSL_get_client_CA_list",
160161
"SSL_get_current_cipher",

src/entry.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2437,6 +2437,16 @@ entry_stub! {
24372437
pub fn _SSL_get_all_async_fds(_ssl: *mut SSL, _fds: *mut c_int, _numfds: *mut usize) -> c_int;
24382438
}
24392439

2440+
entry_stub! {
2441+
pub fn _SSL_get_changed_async_fds(
2442+
_ssl: *mut SSL,
2443+
_addfd: *mut c_int,
2444+
_numaddfds: *mut usize,
2445+
_delfd: *mut c_int,
2446+
_numdelfds: *mut usize,
2447+
) -> c_int;
2448+
}
2449+
24402450
// ---------------------
24412451

24422452
#[cfg(test)]

0 commit comments

Comments
 (0)