[#BIO_sock_should_retry] = BIO_sock_should_retry :mrdocs: Decide whether a socket BIO operation should be retried after return value `i.` == Synopsis Declared in `<openssl/bio.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int BIO_sock_should_retry(int i); ---- == Return Value 1 if the failure is retryable (EAGAIN/EINTR‐style), or 0 otherwise. == Parameters [cols="1,4"] |=== | Name| Description | *i* | Result from a socket read/write (negative on error, or zero in some cases). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#