mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
26 lines
583 B
Go
26 lines
583 B
Go
package quic
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/common"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
)
|
|
|
|
//go:generate go run github.com/xtls/xray-core/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"
|
|
internalDomain = "quic.internal.example.com"
|
|
)
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
|
return new(Config)
|
|
}))
|
|
}
|