mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-16 15:32:22 +08:00
16 lines
264 B
Go
16 lines
264 B
Go
package adapter
|
|
|
|
import (
|
|
N "github.com/sagernet/sing/common/network"
|
|
)
|
|
|
|
// Note: for proxy protocols, outbound creates early connections by default.
|
|
|
|
type Outbound interface {
|
|
Type() string
|
|
Tag() string
|
|
Network() []string
|
|
Dependencies() []string
|
|
N.Dialer
|
|
}
|