Add dial parallel for outbound dialer

This commit is contained in:
世界 2022-07-08 12:58:43 +08:00
parent d45007b501
commit 3699a57847
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
17 changed files with 253 additions and 39 deletions

View file

@ -3,6 +3,7 @@ package option
import (
"net/netip"
"strings"
"time"
E "github.com/sagernet/sing/common/exceptions"
@ -135,3 +136,23 @@ func (s *DomainStrategy) UnmarshalJSON(bytes []byte) error {
}
return nil
}
type Duration time.Duration
func (d Duration) MarshalJSON() ([]byte, error) {
return json.Marshal((time.Duration)(d).String())
}
func (d *Duration) UnmarshalJSON(bytes []byte) error {
var value string
err := json.Unmarshal(bytes, &value)
if err != nil {
return err
}
duration, err := time.ParseDuration(value)
if err != nil {
return err
}
*d = Duration(duration)
return nil
}