mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
611 B
26 lines
611 B
4 years ago
|
// +build !confonly
|
||
|
|
||
|
package quic
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/v1/common"
|
||
|
"github.com/xtls/xray-core/v1/transport/internet"
|
||
|
)
|
||
|
|
||
|
//go:generate go run github.com/xtls/xray-core/v1/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.example.com"
|
||
|
|
||
|
func init() {
|
||
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
||
|
return new(Config)
|
||
|
}))
|
||
|
}
|