sing-box/adapter/outbound.go

16 lines
264 B
Go
Raw Normal View History

2022-06-30 13:27:56 +00:00
package adapter
import (
N "github.com/sagernet/sing/common/network"
)
2022-07-29 16:29:22 +00:00
// Note: for proxy protocols, outbound creates early connections by default.
2022-06-30 13:27:56 +00:00
type Outbound interface {
Type() string
Tag() string
Network() []string
2023-06-13 14:38:05 +00:00
Dependencies() []string
2022-07-03 05:14:49 +00:00
N.Dialer
2022-06-30 13:27:56 +00:00
}