From b5223bdad1dc95361d66eae04778200a02b02bf7 Mon Sep 17 00:00:00 2001 From: azw Date: Sun, 9 Apr 2023 07:39:40 +0000 Subject: [PATCH] 1 --- server/wsproxy/app.cc | 2 +- server/wsproxy/{mastersvr.cc => master.cc} | 2 +- server/wsproxy/{mastersvr.h => master.h} | 0 server/wsproxy/mastersvrmgr.cc | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename server/wsproxy/{mastersvr.cc => master.cc} (99%) rename server/wsproxy/{mastersvr.h => master.h} (100%) diff --git a/server/wsproxy/app.cc b/server/wsproxy/app.cc index 80a7261..2dd4ba0 100644 --- a/server/wsproxy/app.cc +++ b/server/wsproxy/app.cc @@ -23,7 +23,7 @@ #include "upstream.h" #include "upstreammgr.h" -#include "mastersvr.h" +#include "master.h" #include "mastersvrmgr.h" struct MsgNode diff --git a/server/wsproxy/mastersvr.cc b/server/wsproxy/master.cc similarity index 99% rename from server/wsproxy/mastersvr.cc rename to server/wsproxy/master.cc index f232bd0..2b8d191 100644 --- a/server/wsproxy/mastersvr.cc +++ b/server/wsproxy/master.cc @@ -9,7 +9,7 @@ #include "ss_proto.pb.h" #include "ss_msgid.pb.h" -#include "mastersvr.h" +#include "master.h" #include "app.h" diff --git a/server/wsproxy/mastersvr.h b/server/wsproxy/master.h similarity index 100% rename from server/wsproxy/mastersvr.h rename to server/wsproxy/master.h diff --git a/server/wsproxy/mastersvrmgr.cc b/server/wsproxy/mastersvrmgr.cc index 4ae728f..b083816 100644 --- a/server/wsproxy/mastersvrmgr.cc +++ b/server/wsproxy/mastersvrmgr.cc @@ -8,7 +8,7 @@ #include #include "mastersvrmgr.h" -#include "mastersvr.h" +#include "master.h" #include "jsondatamgr.h" #include "ss_proto.pb.h" #include "upstream.h"