Remove unused code

This commit is contained in:
Changhua 2025-01-30 20:47:06 +08:00
parent 2a27dec354
commit 7f4f1c54d6

View File

@ -33,21 +33,16 @@
#include "user_info.h" #include "user_info.h"
#include "util.h" #include "util.h"
#define URL_SIZE 20
#define BASE_URL "tcp://0.0.0.0"
#define G_BUF_SIZE (16 * 1024 * 1024)
namespace fs = std::filesystem; namespace fs = std::filesystem;
constexpr size_t DEFAULT_BUF_SIZE = 16 * 1024 * 1024; constexpr size_t DEFAULT_BUF_SIZE = 16 * 1024 * 1024;
static int cmdPort = 0; static int cmdPort = 0;
static bool isRpcRunning = false; static bool isRpcRunning = false;
static bool isReveivingMsg = false; static HANDLE cmdThread = NULL;
static HANDLE cmdThread = NULL; static HANDLE msgThread = NULL;
static HANDLE msgThread = NULL; static nng_socket cmdSock = NNG_SOCKET_INITIALIZER; // TODO: 断开检测
static nng_socket cmdSock = NNG_SOCKET_INITIALIZER; // TODO: 断开检测 static nng_socket msgSock = NNG_SOCKET_INITIALIZER; // TODO: 断开检测
static nng_socket msgSock = NNG_SOCKET_INITIALIZER; // TODO: 断开检测
auto &msgHandler = MessageHandler::getInstance(); auto &msgHandler = MessageHandler::getInstance();