mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
models/server: fix bug, program will core if listener is nil
This commit is contained in:
parent
975c2a97c8
commit
3218eda481
@ -128,7 +128,9 @@ func (p *ProxyServer) Start() (err error) {
|
||||
func (p *ProxyServer) Close() {
|
||||
p.Lock()
|
||||
p.Status = consts.Idle
|
||||
p.listener.Close()
|
||||
if p.listener != nil {
|
||||
p.listener.Close()
|
||||
}
|
||||
close(p.ctlMsgChan)
|
||||
close(p.cliConnChan)
|
||||
p.userConnList = list.New()
|
||||
|
Loading…
Reference in New Issue
Block a user