Minor fixes

This commit is contained in:
世界 2022-08-12 12:13:57 +08:00
parent ef8dde2b70
commit b0ed1dc106
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 70 additions and 36 deletions

8
box.go
View file

@ -29,6 +29,7 @@ type Box struct {
logger log.ContextLogger
logFile *os.File
clashServer adapter.ClashServer
done chan struct{}
}
func New(ctx context.Context, options option.Options) (*Box, error) {
@ -161,6 +162,7 @@ func New(ctx context.Context, options option.Options) (*Box, error) {
logger: logFactory.NewLogger(""),
logFile: logFile,
clashServer: clashServer,
done: make(chan struct{}),
}, nil
}
@ -189,6 +191,12 @@ func (s *Box) Start() error {
}
func (s *Box) Close() error {
select {
case <-s.done:
return os.ErrClosed
default:
close(s.done)
}
for _, in := range s.inbounds {
in.Close()
}