mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
https://github.com/XTLS/Xray-core/issues/3547#issuecomment-3549896520 https://github.com/XTLS/Xray-core/issues/2635#issuecomment-3570871754
24 lines
485 B
Go
24 lines
485 B
Go
package conf
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/common/protocol"
|
|
"github.com/xtls/xray-core/proxy/hysteria"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
type HysteriaClientConfig struct {
|
|
Address *Address `json:"address"`
|
|
Port uint16 `json:"port"`
|
|
}
|
|
|
|
func (c *HysteriaClientConfig) Build() (proto.Message, error) {
|
|
config := new(hysteria.ClientConfig)
|
|
|
|
config.Server = &protocol.ServerEndpoint{
|
|
Address: c.Address.Build(),
|
|
Port: uint32(c.Port),
|
|
}
|
|
|
|
return config, nil
|
|
}
|