From c48db815c7847b88907aae58f2a1af5c20d9dc8f Mon Sep 17 00:00:00 2001 From: Javier Date: Sun, 13 Dec 2015 15:45:19 +0100 Subject: webproxy request packet, but there is something wrong --- webproxyconn.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'webproxyconn.h') diff --git a/webproxyconn.h b/webproxyconn.h index 3a05ad3..533feeb 100644 --- a/webproxyconn.h +++ b/webproxyconn.h @@ -12,7 +12,16 @@ class WebProxyConn : public QObject public: WebProxyConn(SAPConnection *conn, QObject *parent = 0); -private: +protected: + struct RequestMessage { + quint8 command; // Seems to be always 1 + quint8 subCommand; + quint8 type; + quint8 transactionId; // Monotonically increasing + QByteArray payload; + }; + + static RequestMessage unpackRequestMessage(const QByteArray &data); private slots: void handleConnected(); -- cgit v1.2.3