This commit is contained in:
“wanyongkang”
2022-04-19 16:50:04 +08:00
parent 2af88ba405
commit 7528b74aae
9 changed files with 536 additions and 47 deletions

View File

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