2018-11-21 10:47:06 -05:00
|
|
|
package quic
|
|
|
|
|
2019-02-01 10:56:43 -05:00
|
|
|
import (
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/transport/internet"
|
2019-02-01 10:56:43 -05:00
|
|
|
)
|
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
//go:generate go run github.com/v2fly/v2ray-core/v5/common/errors/errorgen
|
2018-11-21 10:47:06 -05:00
|
|
|
|
|
|
|
// 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)
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
2021-05-19 17:28:52 -04:00
|
|
|
const (
|
|
|
|
protocolName = "quic"
|
|
|
|
internalDomain = "quic.internal.v2fly.org"
|
|
|
|
)
|
2019-02-01 10:56:43 -05:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
|
|
|
return new(Config)
|
|
|
|
}))
|
|
|
|
}
|