Fix WebSocket proxy not gluing segmented TCP packets back together
This commit is contained in:
parent
4c5954e9c0
commit
78f3e1d3d1
@ -104,6 +104,16 @@ private:
|
|||||||
* @brief The WebSocket representing an incoming connection.
|
* @brief The WebSocket representing an incoming connection.
|
||||||
*/
|
*/
|
||||||
QWebSocket* web_socket;
|
QWebSocket* web_socket;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Stores partial packets in case they don't all come through the TCP socket at once
|
||||||
|
*/
|
||||||
|
QByteArray partial_packet;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Flag that is set when packets are segmented
|
||||||
|
*/
|
||||||
|
bool is_segmented = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // WS_CLIENT_H
|
#endif // WS_CLIENT_H
|
||||||
|
@ -26,6 +26,20 @@ void WSClient::onWsData(QString message)
|
|||||||
void WSClient::onTcpData()
|
void WSClient::onTcpData()
|
||||||
{
|
{
|
||||||
QByteArray tcp_message = tcp_socket->readAll();
|
QByteArray tcp_message = tcp_socket->readAll();
|
||||||
|
|
||||||
|
if (!tcp_message.endsWith("#%")) {
|
||||||
|
partial_packet.append(tcp_message);
|
||||||
|
is_segmented = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_segmented) {
|
||||||
|
partial_packet.append(tcp_message);
|
||||||
|
tcp_message = partial_packet;
|
||||||
|
partial_packet.clear();
|
||||||
|
is_segmented = false;
|
||||||
|
}
|
||||||
|
|
||||||
// Workaround for WebAO bug needing every packet in its own message
|
// Workaround for WebAO bug needing every packet in its own message
|
||||||
QStringList all_packets = QString::fromUtf8(tcp_message).split("%");
|
QStringList all_packets = QString::fromUtf8(tcp_message).split("%");
|
||||||
all_packets.removeLast(); // Remove empty space after final delimiter
|
all_packets.removeLast(); // Remove empty space after final delimiter
|
||||||
|
Loading…
Reference in New Issue
Block a user