This commit is contained in:
“wanyongkang”
2022-04-29 16:44:02 +08:00
parent 7528b74aae
commit 35814d3436
12 changed files with 509 additions and 40 deletions

View File

@@ -77,6 +77,8 @@ namespace Hncore.Pass.Vpn.Service
agent = new AgentClient16Service(m_HttpClientFactory) { ClientName = product.GroupNO };
if (product.GroupNO == "g17")
agent = new AgentClient17Service(m_HttpClientFactory) { ClientName = product.GroupNO };
if (product.GroupNO == "g18")
agent = new AgentClient18Service(m_HttpClientFactory) { ClientName = product.GroupNO };
agent.Product = product;
return agent;
}