Browse Source

implemented ping/pong

logicp 5 years ago
parent
commit
9768c08de5
2 changed files with 16 additions and 0 deletions
  1. 2 0
      include/client.hpp
  2. 14 0
      src/client.cpp

+ 2 - 0
include/client.hpp

@@ -31,6 +31,7 @@ enum TaskType {
 namespace TaskCode {
 static constexpr int IGTASKBYTE = 0xFF;
 static constexpr int GENMSGBYTE = 0xFE;
+static constexpr int PINGBYTE = 0xFD;
 }
 
 typedef std::map<int, std::string> CommandMap;
@@ -79,6 +80,7 @@ public slots:
     void sendMessage(const QString& s);
     void setSelectedApp(std::vector<QString> app_names);
     void sendFiles(QVector<KFileData> files);
+    void ping();
 
 signals:
     void messageReceived(int t, QString s, QVector<QString> args);

+ 14 - 0
src/client.cpp

@@ -69,6 +69,10 @@ void Client::handleMessages() {
         size_t end_idx = findNullIndex(receive_buffer);
         std::string data_string{receive_buffer, receive_buffer + end_idx};
         qDebug() << "Received data from KServer: \n" << data_string.c_str();
+        if (isPong(data_string.c_str())) {
+            qDebug() << "Server returned pong";
+            continue;
+        }
         StringVec s_v{};
         if (isNewSession(data_string.c_str())) { // Session Start
             m_commands = getArgMap(data_string.c_str());
@@ -326,6 +330,16 @@ void Client::sendPackets(uint8_t* data, int size) {
     }
 }
 
+void Client::ping() {
+    if (m_client_socket_fd != -1) {
+        uint8_t send_buffer[5];
+        memset(send_buffer, 0, 5);
+        send_buffer[4] = (TaskCode::PINGBYTE & 0xFF);
+        qDebug() << "Pinging server";
+        ::send(m_client_socket_fd, send_buffer, 5, 0);
+    }
+}
+
 /**
  * @brief Client::sendFileEncoded
  * @param [in] {QByteArray} bytes An array of bytes to send