Xray-core/transport/internet/quic/quic.go

26 lines
583 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package quic
import (
2020-12-04 03:36:16 +02:00
"github.com/xtls/xray-core/common"
"github.com/xtls/xray-core/transport/internet"
2020-11-25 13:01:53 +02:00
)
2020-12-04 03:36:16 +02:00
//go:generate go run github.com/xtls/xray-core/common/errors/errorgen
2020-11-25 13:01:53 +02: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-10-19 19:57:14 +03:00
const (
protocolName = "quic"
internalDomain = "quic.internal.example.com"
)
2020-11-25 13:01:53 +02:00
func init() {
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
return new(Config)
}))
}