mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 20:37:37 +03:00
15 lines
231 B
Go
15 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)
|
|
}
|