filter

jetpack_protect_connect_timeout

Filter controls maximum timeout in waiting for reponse from Protect servers.

Parameters

$timeout
int

Max time (in seconds) to wait for a response.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

You can use this filter to control the maximum timeout in waiting for a response from Protect servers. Here is how you could use it:
function jeherve_custom_protect_timeout() {
    return 180;
}
add_filter( 'jetpack_protect_connect_timeout', 'jeherve_custom_protect_timeout' );