From 8968761471c57e55771108ab459437d219d0b400 Mon Sep 17 00:00:00 2001 From: azw Date: Sun, 9 Apr 2023 07:33:02 +0000 Subject: [PATCH] 1 --- server/wsproxy/app.cc | 2 +- server/wsproxy/downstreammgr.cc | 2 +- server/wsproxy/mastersvrmgr.cc | 2 +- server/wsproxy/{target_conn_mgr.cc => upstreammgr.cc} | 2 +- server/wsproxy/{target_conn_mgr.h => upstreammgr.h} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename server/wsproxy/{target_conn_mgr.cc => upstreammgr.cc} (97%) rename server/wsproxy/{target_conn_mgr.h => upstreammgr.h} (100%) diff --git a/server/wsproxy/app.cc b/server/wsproxy/app.cc index b15e711..7263621 100644 --- a/server/wsproxy/app.cc +++ b/server/wsproxy/app.cc @@ -22,7 +22,7 @@ #include "ss_proto.pb.h" #include "upstream.h" -#include "target_conn_mgr.h" +#include "upstreammgr.h" #include "mastersvr.h" #include "mastersvrmgr.h" diff --git a/server/wsproxy/downstreammgr.cc b/server/wsproxy/downstreammgr.cc index afb2503..9d2037d 100644 --- a/server/wsproxy/downstreammgr.cc +++ b/server/wsproxy/downstreammgr.cc @@ -7,7 +7,7 @@ #include "downstream.h" #include "upstream.h" -#include "target_conn_mgr.h" +#include "upstreammgr.h" #include "GCListener.h" #include "app.h" diff --git a/server/wsproxy/mastersvrmgr.cc b/server/wsproxy/mastersvrmgr.cc index 1719131..d121ab8 100644 --- a/server/wsproxy/mastersvrmgr.cc +++ b/server/wsproxy/mastersvrmgr.cc @@ -12,7 +12,7 @@ #include "jsondatamgr.h" #include "ss_proto.pb.h" #include "upstream.h" -#include "target_conn_mgr.h" +#include "upstreammgr.h" #include "app.h" #include "downstreammgr.h" diff --git a/server/wsproxy/target_conn_mgr.cc b/server/wsproxy/upstreammgr.cc similarity index 97% rename from server/wsproxy/target_conn_mgr.cc rename to server/wsproxy/upstreammgr.cc index 2aba188..5599131 100644 --- a/server/wsproxy/target_conn_mgr.cc +++ b/server/wsproxy/upstreammgr.cc @@ -1,6 +1,6 @@ #include "precompile.h" -#include "target_conn_mgr.h" +#include "upstreammgr.h" #include "upstream.h" #include "jsondatamgr.h" #include "app.h" diff --git a/server/wsproxy/target_conn_mgr.h b/server/wsproxy/upstreammgr.h similarity index 100% rename from server/wsproxy/target_conn_mgr.h rename to server/wsproxy/upstreammgr.h