mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
357 B
17 lines
357 B
package conf
|
|
|
|
import (
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/xtls/xray-core/transport/internet/grpc"
|
|
)
|
|
|
|
type GRPCConfig struct {
|
|
ServiceName string `json:"serviceName"`
|
|
MultiMode bool `json:"multiMode"`
|
|
}
|
|
|
|
func (g GRPCConfig) Build() (proto.Message, error) {
|
|
return &grpc.Config{ServiceName: g.ServiceName, MultiMode: g.MultiMode}, nil
|
|
}
|