NetCraft icon indicating copy to clipboard operation
NetCraft copied to clipboard

Automatic re-connect interval if disconnected?

Open satoshinm opened this issue 7 years ago • 1 comments

The server connection can be lost for various reasons, such as if you are on a mobile device and lose connectivity. Reconnecting requires typing /online servername (if you have a keyboard) or reloading the page (losing state). What about automatically trying to reconnect to the server at some repeating interval, if the connection is lost? src/main.c:

void client_closed(int fd, void *userData) {
    add_message("Client closed the connection");
    client_disable();
}

satoshinm avatar May 31 '17 04:05 satoshinm

Found this (but it is JavaScript): https://github.com/joewalnes/reconnecting-websocket - "after an onclose event is called it will automatically attempt to reconnect" repeatedly (with a small pause) - 1 second intervals

satoshinm avatar Jun 04 '17 02:06 satoshinm