mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package tuic
|
|
|
|
import (
|
|
C "github.com/metacubex/mihomo/constant"
|
|
"github.com/metacubex/mihomo/transport/tuic/common"
|
|
v4 "github.com/metacubex/mihomo/transport/tuic/v4"
|
|
v5 "github.com/metacubex/mihomo/transport/tuic/v5"
|
|
)
|
|
|
|
type ClientOptionV4 = v4.ClientOption
|
|
type ClientOptionV5 = v5.ClientOption
|
|
|
|
type Client = common.Client
|
|
|
|
func NewClientV4(clientOption *ClientOptionV4, udp bool, dialerRef C.Dialer) Client {
|
|
return v4.NewClient(clientOption, udp, dialerRef)
|
|
}
|
|
|
|
func NewClientV5(clientOption *ClientOptionV5, udp bool, dialerRef C.Dialer) Client {
|
|
return v5.NewClient(clientOption, udp, dialerRef)
|
|
}
|
|
|
|
type DialFunc = common.DialFunc
|
|
|
|
var TooManyOpenStreams = common.TooManyOpenStreams
|
|
|
|
const DefaultStreamReceiveWindow = common.DefaultStreamReceiveWindow
|
|
const DefaultConnectionReceiveWindow = common.DefaultConnectionReceiveWindow
|
|
|
|
var GenTKN = v4.GenTKN
|
|
var PacketOverHeadV4 = v4.PacketOverHead
|
|
var PacketOverHeadV5 = v5.PacketOverHead
|
|
var MaxFragSizeV5 = v5.MaxFragSize
|
|
|
|
type UdpRelayMode = common.UdpRelayMode
|
|
|
|
const (
|
|
QUIC = common.QUIC
|
|
NATIVE = common.NATIVE
|
|
)
|