I have a simple Client application (using QWebSocket
) that wants to connect to my server application (i.e. QWebSocketServer
).
When I open a connection to a webSocketServer that is down/unavailable, my webSocket fires a "disconnectd" signal after 30 sec.
This is good as it helps me to understand that the server is down/unavailable so I can retry or warn the user about the problem.
If the link between the client and server fails the same thing happens. i.e. after writing (sendBinaryMessage) to the webSocket causes the disconnected signal to be fired after 30 secs.
I would like to know what are the default timers in QWebSocket
and how I can modify them?
Where can I find such information/documentation? The Qt documentation on webSockets does not mention this behaviour at all! Should I read the code or ...?!
Thanks in advance
From QWebSocket:
QAbstractSocket
in turn inherits fromQIODevice
.The documentation of these classes have some information about timeouts. Specifically you can see the default of 30 seconds pop up here and there.
Another place to look at is
QObject
's documentation (QWebSocket inherits it). Perhaps by overridingQObject
's timer-related virtual functions you can somehow get in between these mechanisms and perhaps change the timeout.Sorry to not be of more help.