mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 16:41:30 +00:00
Handle SIGHUP signal
This commit is contained in:
parent
9f6ff54a76
commit
aa8cdaee22
|
@ -3,7 +3,6 @@ package main
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
runtimeDebug "runtime/debug"
|
runtimeDebug "runtime/debug"
|
||||||
|
@ -13,7 +12,6 @@ import (
|
||||||
"github.com/sagernet/sing-box/common/json"
|
"github.com/sagernet/sing-box/common/json"
|
||||||
"github.com/sagernet/sing-box/log"
|
"github.com/sagernet/sing-box/log"
|
||||||
"github.com/sagernet/sing-box/option"
|
"github.com/sagernet/sing-box/option"
|
||||||
"github.com/sagernet/sing/common/debug"
|
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
@ -81,21 +79,19 @@ func create() (*box.Box, context.CancelFunc, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func run() error {
|
func run() error {
|
||||||
instance, cancel, err := create()
|
for {
|
||||||
if err != nil {
|
instance, cancel, err := create()
|
||||||
return err
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
runtimeDebug.FreeOSMemory()
|
||||||
|
osSignals := make(chan os.Signal, 1)
|
||||||
|
signal.Notify(osSignals, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP)
|
||||||
|
osSignal := <-osSignals
|
||||||
|
cancel()
|
||||||
|
instance.Close()
|
||||||
|
if osSignal != syscall.SIGHUP {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if debug.Enabled {
|
|
||||||
http.HandleFunc("/debug/close", func(writer http.ResponseWriter, request *http.Request) {
|
|
||||||
cancel()
|
|
||||||
instance.Close()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
runtimeDebug.FreeOSMemory()
|
|
||||||
osSignals := make(chan os.Signal, 1)
|
|
||||||
signal.Notify(osSignals, os.Interrupt, syscall.SIGTERM)
|
|
||||||
<-osSignals
|
|
||||||
cancel()
|
|
||||||
instance.Close()
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue