2019-02-01 14:08:21 -05:00
|
|
|
// +build !confonly
|
|
|
|
|
2018-11-21 10:47:06 -05:00
|
|
|
package quic
|
|
|
|
|
2019-02-01 10:56:43 -05:00
|
|
|
import (
|
|
|
|
"v2ray.com/core/common"
|
|
|
|
"v2ray.com/core/transport/internet"
|
|
|
|
)
|
|
|
|
|
2018-11-21 10:47:06 -05:00
|
|
|
//go:generate 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"
|
2018-11-21 16:02:19 -05:00
|
|
|
const internalDomain = "quic.internal.v2ray.com"
|
2019-02-01 10:56:43 -05:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
|
|
|
return new(Config)
|
|
|
|
}))
|
|
|
|
}
|