Bump keepalive to 55s

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2015-03-10 17:29:00 -07:00
parent 2614bba212
commit da648b4e4c

View File

@ -156,7 +156,7 @@ public class WebSocketConnection implements WebSocketEventListener {
public void run() { public void run() {
while (!stop.get()) { while (!stop.get()) {
try { try {
Thread.sleep(TimeUnit.SECONDS.toMillis(15)); Thread.sleep(TimeUnit.SECONDS.toMillis(55));
Log.w(TAG, "Sending keep alive..."); Log.w(TAG, "Sending keep alive...");
sendKeepAlive(); sendKeepAlive();