Add auto_route and auto_detect_interface for linux

This commit is contained in:
世界 2022-07-10 08:18:52 +08:00
parent 4432cc2253
commit 638f8a52d1
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
16 changed files with 318 additions and 20 deletions

View file

@ -12,7 +12,7 @@ import (
func New(router adapter.Router, options option.DialerOptions) N.Dialer {
if options.Detour == "" {
return NewDefault(options)
return NewDefault(router, options)
} else {
return NewDetour(router, options.Detour)
}