mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
feat(tun): use time.Duration for timeout config
matches timeout config of other inbounds
This commit is contained in:
parent
4aec8166b3
commit
0cde4f405f
2 changed files with 13 additions and 12 deletions
|
@ -22,9 +22,9 @@ type Server struct {
|
|||
// for debugging
|
||||
Logger *zap.Logger
|
||||
|
||||
IfName string
|
||||
MTU uint32
|
||||
UDPTimeout int64 // in seconds
|
||||
IfName string
|
||||
MTU uint32
|
||||
Timeout int64 // in seconds, also applied to TCP in system stack
|
||||
|
||||
// required by system stack
|
||||
Inet4Address []netip.Prefix
|
||||
|
@ -60,7 +60,7 @@ func (s *Server) Serve() error {
|
|||
Context: context.Background(),
|
||||
Tun: tunIf,
|
||||
TunOptions: tunOpts,
|
||||
UDPTimeout: s.UDPTimeout,
|
||||
UDPTimeout: s.Timeout,
|
||||
Handler: &tunHandler{s},
|
||||
Logger: &singLogger{
|
||||
tag: "tun-stack",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue