mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-05 01:38:24 -05:00
26 lines
615 B
Go
26 lines
615 B
Go
// +build !confonly
|
|
|
|
package quic
|
|
|
|
import (
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet"
|
|
)
|
|
|
|
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
|
|
|
|
// Here is some modification needs to be done before update quic vendor.
|
|
// * use bytespool in buffer_pool.go
|
|
// * set MaxReceivePacketSize to 1452 - 32 (16 bytes auth, 16 bytes head)
|
|
//
|
|
//
|
|
|
|
const protocolName = "quic"
|
|
const internalDomain = "quic.internal.v2fly.org"
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
|
return new(Config)
|
|
}))
|
|
}
|