[#SSL_get_event_timeout] = SSL_get_event_timeout :mrdocs: Report when an SSL object next needs timer‐driven processing (DTLS/QUIC). == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int SSL_get_event_timeout( xref:SSL.adoc[SSL]* s, timeval* tv, int* is_infinite); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *s* | SSL connection to query; non‐DTLS/non‐QUIC objects report an infinite timeout. | *tv* | On success with a finite timeout, receives the relative time until SSL_handle_events should run (zero if due now). | *is_infinite* | Set to 1 when no timer is pending (`tv` unspecified), or 0 when `tv` is valid. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#