12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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
- )
|