Fix early close on windows and catch any

This commit is contained in:
世界 2022-08-24 19:03:00 +08:00
parent 7c76e0c3ee
commit a6baab92f3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 14 additions and 3 deletions

11
box.go
View file

@ -2,8 +2,10 @@ package box
import (
"context"
"fmt"
"io"
"os"
"runtime/debug"
"time"
"github.com/sagernet/sing-box/adapter"
@ -170,6 +172,15 @@ func New(ctx context.Context, options option.Options) (*Box, error) {
func (s *Box) Start() error {
err := s.start()
if err != nil {
// TODO: remove catch error
defer func() {
v := recover()
if v != nil {
log.Error(E.Cause(err, "origin error"))
debug.PrintStack()
panic("panic on early close: " + fmt.Sprint(v))
}
}()
s.Close()
}
return err