mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-14 00:51:12 +03:00
16 lines
231 B
Go
16 lines
231 B
Go
package adapter
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type V2RayServerTransport interface {
|
|
Serve(listener net.Listener) error
|
|
Close() error
|
|
}
|
|
|
|
type V2RayClientTransport interface {
|
|
DialContext(ctx context.Context) (net.Conn, error)
|
|
}
|