Searched refs:handle_io_failure (Results 1 – 5 of 5) sorted by relevance
/openssl/demos/guide/ |
H A D | tls-client-non-block.c | 138 static int handle_io_failure(SSL *ssl, int res) in handle_io_failure() function 283 if (handle_io_failure(ssl, ret) == 1) in main() 291 if (handle_io_failure(ssl, 0) == 1) in main() 297 if (handle_io_failure(ssl, 0) == 1) in main() 303 if (handle_io_failure(ssl, 0) == 1) in main() 315 switch (handle_io_failure(ssl, 0)) { in main() 345 if (ret < 0 && handle_io_failure(ssl, ret) == 1) in main()
|
H A D | quic-client-non-block.c | 165 static int handle_io_failure(SSL *ssl, int res) in handle_io_failure() function 345 if (handle_io_failure(ssl, ret) == 1) in main() 353 if (handle_io_failure(ssl, 0) == 1) in main() 359 if (handle_io_failure(ssl, 0) == 1) in main() 365 if (handle_io_failure(ssl, 0) == 1) in main() 377 switch (handle_io_failure(ssl, 0)) { in main() 407 if (ret < 0 && handle_io_failure(ssl, ret) == 1) in main()
|
H A D | quic-hq-interop.c | 57 static int handle_io_failure(SSL *ssl, int res); 285 static int handle_io_failure(SSL *ssl, int res) in handle_io_failure() function 638 if (handle_io_failure(poll_list[poll_idx].desc.value.ssl, 0) == 1) in build_request_set() 802 if (handle_io_failure(*ssl, ret) == 1) in setup_connection() 961 switch (handle_io_failure(poll_list[poll_idx].desc.value.ssl, in main() 1007 if (ret < 0 && handle_io_failure(ssl, ret) == 1) in main()
|
/openssl/doc/man7/ |
H A D | ossl-guide-tls-client-non-block.pod | 172 static int handle_io_failure(SSL *ssl, int res) 232 if (handle_io_failure(ssl, ret) == 1) 239 Otherwise we use the C<handle_io_failure()> function that we created earlier to 261 if (handle_io_failure(ssl, 0) == 1) 267 if (handle_io_failure(ssl, 0) == 1) 273 if (handle_io_failure(ssl, 0) == 1) 290 switch (handle_io_failure(ssl, 0)) { 337 handle_io_failure() function that we developed earlier for this: 344 if (ret < 0 && handle_io_failure(ssl, ret) == 1)
|
H A D | ossl-guide-quic-client-non-block.pod | 207 static int handle_io_failure(SSL *ssl, int res) 320 if (handle_io_failure(ssl, ret) == 1) 327 Otherwise we use the C<handle_io_failure()> function that we created earlier to 349 if (handle_io_failure(ssl, 0) == 1) 355 if (handle_io_failure(ssl, 0) == 1) 361 if (handle_io_failure(ssl, 0) == 1) 378 switch (handle_io_failure(ssl, 0)) { 427 next. We use our handle_io_failure() function that we developed earlier for 435 if (ret < 0 && handle_io_failure(ssl, ret) == 1)
|
Completed in 23 milliseconds