forked from Mxmilu666/frp
frps: fix a panic bug caused by reading map
This commit is contained in:
@@ -392,3 +392,10 @@ func DeleteProxy(proxyName string) {
|
||||
defer ProxyServersMutex.Unlock()
|
||||
delete(ProxyServers, proxyName)
|
||||
}
|
||||
|
||||
func GetProxyServer(proxyName string) (p *ProxyServer, ok bool) {
|
||||
ProxyServersMutex.RLock()
|
||||
defer ProxyServersMutex.RUnlock()
|
||||
p, ok = ProxyServers[proxyName]
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user