sing-box/common/mux/protocol.go

15 lines
173 B
Go
Raw Normal View History

2022-07-30 00:29:22 +08:00
package mux
import (
2023-04-20 11:16:22 +08:00
"github.com/sagernet/sing-mux"
2022-07-30 00:29:22 +08:00
)
2023-04-20 11:16:22 +08:00
type (
Client = mux.Client
2022-08-03 21:51:34 +08:00
)
2023-04-20 11:16:22 +08:00
var (
Destination = mux.Destination
HandleConnection = mux.HandleConnection
2022-07-30 00:29:22 +08:00
)