File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 ] |
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff 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) ]
You can’t perform that action at this time.
0 commit comments