From 4dbd7177d6535513bb2e6074e8b09016e754b67d Mon Sep 17 00:00:00 2001 From: azw Date: Sun, 9 Apr 2023 06:55:29 +0000 Subject: [PATCH] 1 --- server/wsproxy/app.cc | 2 +- server/wsproxy/{gameclient.cc => client.cc} | 2 +- server/wsproxy/{gameclient.h => client.h} | 0 server/wsproxy/gameclientmgr.cc | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename server/wsproxy/{gameclient.cc => client.cc} (51%) rename server/wsproxy/{gameclient.h => client.h} (100%) diff --git a/server/wsproxy/app.cc b/server/wsproxy/app.cc index 8ed5b25..22c7886 100644 --- a/server/wsproxy/app.cc +++ b/server/wsproxy/app.cc @@ -16,7 +16,7 @@ #include "GCListener.h" #include "jsondatamgr.h" #include "handlermgr.h" -#include "gameclient.h" +#include "client.h" #include "gameclientmgr.h" #include "ss_msgid.pb.h" #include "ss_proto.pb.h" diff --git a/server/wsproxy/gameclient.cc b/server/wsproxy/client.cc similarity index 51% rename from server/wsproxy/gameclient.cc rename to server/wsproxy/client.cc index 80b4132..0db222c 100644 --- a/server/wsproxy/gameclient.cc +++ b/server/wsproxy/client.cc @@ -1,3 +1,3 @@ #include "precompile.h" -#include "gameclient.h" +#include "client.h" diff --git a/server/wsproxy/gameclient.h b/server/wsproxy/client.h similarity index 100% rename from server/wsproxy/gameclient.h rename to server/wsproxy/client.h diff --git a/server/wsproxy/gameclientmgr.cc b/server/wsproxy/gameclientmgr.cc index 3ae32c4..fab4d89 100644 --- a/server/wsproxy/gameclientmgr.cc +++ b/server/wsproxy/gameclientmgr.cc @@ -5,7 +5,7 @@ #include "gameclientmgr.h" #include "ss_proto.pb.h" -#include "gameclient.h" +#include "client.h" #include "target_conn.h" #include "target_conn_mgr.h" #include "GCListener.h"