ssh2_keepalive_config
(PECL ssh2 >= 1.5.0)
Configure how often keepalive messages should be sent
Description
Configures how often keepalive messages are sent on the given session, and whether the server is asked to reply to them.
Keepalive messages are not sent automatically. Once configured, ssh2_keepalive_send() must be called to actually send a keepalive message.
This function is only available when the extension is built against a libssh2 version providing keepalive support.
Parameters
sessionAn SSH connection link identifier, obtained from a call to
ssh2_connect().want_replyWhether the server is requested to reply to keepalive messages. Requesting a reply makes an unresponsive server detectable, at the cost of some extra traffic.
intervalThe number of seconds that may pass without any traffic before a keepalive message should be sent. A value of
0disables keepalive messages, and a value of1is treated as2by the underlying library.Accepted values range from
0to4294967295.
Return Values
Void
Errors/Exceptions
An E_WARNING is emitted when interval is outside the accepted range, in which case the keepalive configuration is left unchanged.
Examples
Sending keepalive messages
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
// Ask the server to reply, after 30 seconds without any traffic
ssh2_keepalive_config($connection, true, 30);
// Keepalive messages are only sent when this function is called
ssh2_keepalive_send($connection);
?>