From 94960b065cbbb998e233a15e2db89b09a32eb59f Mon Sep 17 00:00:00 2001 From: azw Date: Sun, 7 May 2023 12:13:18 +0000 Subject: [PATCH] 1 --- server/wsproxy/mmcache.cc | 20 ++++++++++++++++++++ server/wsproxy/mmcache.h | 6 ++++++ 2 files changed, 26 insertions(+) diff --git a/server/wsproxy/mmcache.cc b/server/wsproxy/mmcache.cc index 272c2f1..65bf884 100644 --- a/server/wsproxy/mmcache.cc +++ b/server/wsproxy/mmcache.cc @@ -11,3 +11,23 @@ void MMCache::UnInit() { } + +char* MMCache::AllocSocketMsg(int len) +{ + +} + +void MMCache::FreeSocketMsg(char* p) +{ + +} + +char* MMCache::AllocUdpMsg(int len) +{ + +} + +void MMCache::FreeUdpMsg(char* p) +{ + +} diff --git a/server/wsproxy/mmcache.h b/server/wsproxy/mmcache.h index 52bbcb4..f86c4a4 100644 --- a/server/wsproxy/mmcache.h +++ b/server/wsproxy/mmcache.h @@ -13,4 +13,10 @@ public: void Init(); void UnInit(); + char* AllocSocketMsg(int len); + void FreeSocketMsg(char* p); + + char* AllocUdpMsg(int len); + void FreeUdpMsg(char* p); + };