| 123456789101112131415161718 |
- package hysteria2
- import (
- "github.com/v2fly/v2ray-core/v5/common"
- "github.com/v2fly/v2ray-core/v5/transport/internet"
- )
- //go:generate go run github.com/v2fly/v2ray-core/v5/common/errors/errorgen
- const (
- protocolName = "hysteria2"
- )
- func init() {
- common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
- return new(Config)
- }))
- }
|