dnsforward library -- introduce IsRunning()
This commit is contained in:
parent
7944f23d95
commit
584f441141
|
@ -163,6 +163,16 @@ func (s *Server) Stop() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Server) IsRunning() bool {
|
||||||
|
s.RLock()
|
||||||
|
isRunning := true
|
||||||
|
if s.udpListen == nil {
|
||||||
|
isRunning = false
|
||||||
|
}
|
||||||
|
s.RUnlock()
|
||||||
|
return isRunning
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Server reconfigure
|
// Server reconfigure
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue