630 lines
22 KiB
Go
630 lines
22 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.5
|
|
// protoc v6.30.0
|
|
// source: pkg/proto/tunnel.proto
|
|
|
|
package proto
|
|
|
|
import (
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
unsafe "unsafe"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
type ProxyType int32
|
|
|
|
const (
|
|
ProxyType_TCP ProxyType = 0
|
|
ProxyType_UDP ProxyType = 1
|
|
)
|
|
|
|
// Enum value maps for ProxyType.
|
|
var (
|
|
ProxyType_name = map[int32]string{
|
|
0: "TCP",
|
|
1: "UDP",
|
|
}
|
|
ProxyType_value = map[string]int32{
|
|
"TCP": 0,
|
|
"UDP": 1,
|
|
}
|
|
)
|
|
|
|
func (x ProxyType) Enum() *ProxyType {
|
|
p := new(ProxyType)
|
|
*p = x
|
|
return p
|
|
}
|
|
|
|
func (x ProxyType) String() string {
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
}
|
|
|
|
func (ProxyType) Descriptor() protoreflect.EnumDescriptor {
|
|
return file_pkg_proto_tunnel_proto_enumTypes[0].Descriptor()
|
|
}
|
|
|
|
func (ProxyType) Type() protoreflect.EnumType {
|
|
return &file_pkg_proto_tunnel_proto_enumTypes[0]
|
|
}
|
|
|
|
func (x ProxyType) Number() protoreflect.EnumNumber {
|
|
return protoreflect.EnumNumber(x)
|
|
}
|
|
|
|
// Deprecated: Use ProxyType.Descriptor instead.
|
|
func (ProxyType) EnumDescriptor() ([]byte, []int) {
|
|
return file_pkg_proto_tunnel_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
// 通用消息格式
|
|
type Message struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// Types that are valid to be assigned to Content:
|
|
//
|
|
// *Message_RegisterConfigs
|
|
// *Message_ProxyData
|
|
// *Message_RegisterProxiesError
|
|
// *Message_ProxyError
|
|
Content isMessage_Content `protobuf_oneof:"content"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Message) Reset() {
|
|
*x = Message{}
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Message) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Message) ProtoMessage() {}
|
|
|
|
func (x *Message) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[0]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Message.ProtoReflect.Descriptor instead.
|
|
func (*Message) Descriptor() ([]byte, []int) {
|
|
return file_pkg_proto_tunnel_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *Message) GetContent() isMessage_Content {
|
|
if x != nil {
|
|
return x.Content
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Message) GetRegisterConfigs() *ProxyConfigs {
|
|
if x != nil {
|
|
if x, ok := x.Content.(*Message_RegisterConfigs); ok {
|
|
return x.RegisterConfigs
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Message) GetProxyData() *ProxyData {
|
|
if x != nil {
|
|
if x, ok := x.Content.(*Message_ProxyData); ok {
|
|
return x.ProxyData
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Message) GetRegisterProxiesError() *RegisterProxiesError {
|
|
if x != nil {
|
|
if x, ok := x.Content.(*Message_RegisterProxiesError); ok {
|
|
return x.RegisterProxiesError
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Message) GetProxyError() *ProxyError {
|
|
if x != nil {
|
|
if x, ok := x.Content.(*Message_ProxyError); ok {
|
|
return x.ProxyError
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type isMessage_Content interface {
|
|
isMessage_Content()
|
|
}
|
|
|
|
type Message_RegisterConfigs struct {
|
|
RegisterConfigs *ProxyConfigs `protobuf:"bytes,1,opt,name=register_configs,json=registerConfigs,proto3,oneof"`
|
|
}
|
|
|
|
type Message_ProxyData struct {
|
|
ProxyData *ProxyData `protobuf:"bytes,2,opt,name=proxy_data,json=proxyData,proto3,oneof"`
|
|
}
|
|
|
|
type Message_RegisterProxiesError struct {
|
|
RegisterProxiesError *RegisterProxiesError `protobuf:"bytes,3,opt,name=register_proxies_error,json=registerProxiesError,proto3,oneof"`
|
|
}
|
|
|
|
type Message_ProxyError struct {
|
|
ProxyError *ProxyError `protobuf:"bytes,4,opt,name=proxy_error,json=proxyError,proto3,oneof"`
|
|
}
|
|
|
|
func (*Message_RegisterConfigs) isMessage_Content() {}
|
|
|
|
func (*Message_ProxyData) isMessage_Content() {}
|
|
|
|
func (*Message_RegisterProxiesError) isMessage_Content() {}
|
|
|
|
func (*Message_ProxyError) isMessage_Content() {}
|
|
|
|
// 代理配置
|
|
type ProxyConfigs struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Configs map[string]*ProxyConfig `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ProxyConfigs) Reset() {
|
|
*x = ProxyConfigs{}
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ProxyConfigs) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ProxyConfigs) ProtoMessage() {}
|
|
|
|
func (x *ProxyConfigs) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[1]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ProxyConfigs.ProtoReflect.Descriptor instead.
|
|
func (*ProxyConfigs) Descriptor() ([]byte, []int) {
|
|
return file_pkg_proto_tunnel_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *ProxyConfigs) GetConfigs() map[string]*ProxyConfig {
|
|
if x != nil {
|
|
return x.Configs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ProxyConfig struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
Type ProxyType `protobuf:"varint,2,opt,name=type,proto3,enum=net_tunnel.ProxyType" json:"type,omitempty"`
|
|
LocalIp string `protobuf:"bytes,3,opt,name=local_ip,json=localIp,proto3" json:"local_ip,omitempty"`
|
|
LocalPort int32 `protobuf:"varint,4,opt,name=local_port,json=localPort,proto3" json:"local_port,omitempty"`
|
|
RemotePort int32 `protobuf:"varint,5,opt,name=remote_port,json=remotePort,proto3" json:"remote_port,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ProxyConfig) Reset() {
|
|
*x = ProxyConfig{}
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ProxyConfig) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ProxyConfig) ProtoMessage() {}
|
|
|
|
func (x *ProxyConfig) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[2]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ProxyConfig.ProtoReflect.Descriptor instead.
|
|
func (*ProxyConfig) Descriptor() ([]byte, []int) {
|
|
return file_pkg_proto_tunnel_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *ProxyConfig) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ProxyConfig) GetType() ProxyType {
|
|
if x != nil {
|
|
return x.Type
|
|
}
|
|
return ProxyType_TCP
|
|
}
|
|
|
|
func (x *ProxyConfig) GetLocalIp() string {
|
|
if x != nil {
|
|
return x.LocalIp
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ProxyConfig) GetLocalPort() int32 {
|
|
if x != nil {
|
|
return x.LocalPort
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ProxyConfig) GetRemotePort() int32 {
|
|
if x != nil {
|
|
return x.RemotePort
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 代理数据
|
|
type ProxyData struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
ConnId string `protobuf:"bytes,1,opt,name=conn_id,json=connId,proto3" json:"conn_id,omitempty"`
|
|
ProxyConfig *ProxyConfig `protobuf:"bytes,2,opt,name=proxy_config,json=proxyConfig,proto3" json:"proxy_config,omitempty"`
|
|
Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ProxyData) Reset() {
|
|
*x = ProxyData{}
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ProxyData) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ProxyData) ProtoMessage() {}
|
|
|
|
func (x *ProxyData) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[3]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ProxyData.ProtoReflect.Descriptor instead.
|
|
func (*ProxyData) Descriptor() ([]byte, []int) {
|
|
return file_pkg_proto_tunnel_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *ProxyData) GetConnId() string {
|
|
if x != nil {
|
|
return x.ConnId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ProxyData) GetProxyConfig() *ProxyConfig {
|
|
if x != nil {
|
|
return x.ProxyConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *ProxyData) GetData() []byte {
|
|
if x != nil {
|
|
return x.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RegisterProxiesError struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
ProxyConfig *ProxyConfig `protobuf:"bytes,1,opt,name=proxy_config,json=proxyConfig,proto3" json:"proxy_config,omitempty"`
|
|
Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *RegisterProxiesError) Reset() {
|
|
*x = RegisterProxiesError{}
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *RegisterProxiesError) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*RegisterProxiesError) ProtoMessage() {}
|
|
|
|
func (x *RegisterProxiesError) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[4]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use RegisterProxiesError.ProtoReflect.Descriptor instead.
|
|
func (*RegisterProxiesError) Descriptor() ([]byte, []int) {
|
|
return file_pkg_proto_tunnel_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
|
|
func (x *RegisterProxiesError) GetProxyConfig() *ProxyConfig {
|
|
if x != nil {
|
|
return x.ProxyConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RegisterProxiesError) GetError() string {
|
|
if x != nil {
|
|
return x.Error
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ProxyError struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
ProxyConfig *ProxyConfig `protobuf:"bytes,1,opt,name=proxy_config,json=proxyConfig,proto3" json:"proxy_config,omitempty"`
|
|
ConnId string `protobuf:"bytes,2,opt,name=conn_id,json=connId,proto3" json:"conn_id,omitempty"`
|
|
Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ProxyError) Reset() {
|
|
*x = ProxyError{}
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ProxyError) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ProxyError) ProtoMessage() {}
|
|
|
|
func (x *ProxyError) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pkg_proto_tunnel_proto_msgTypes[5]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ProxyError.ProtoReflect.Descriptor instead.
|
|
func (*ProxyError) Descriptor() ([]byte, []int) {
|
|
return file_pkg_proto_tunnel_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
|
|
func (x *ProxyError) GetProxyConfig() *ProxyConfig {
|
|
if x != nil {
|
|
return x.ProxyConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *ProxyError) GetConnId() string {
|
|
if x != nil {
|
|
return x.ConnId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ProxyError) GetError() string {
|
|
if x != nil {
|
|
return x.Error
|
|
}
|
|
return ""
|
|
}
|
|
|
|
var File_pkg_proto_tunnel_proto protoreflect.FileDescriptor
|
|
|
|
var file_pkg_proto_tunnel_proto_rawDesc = string([]byte{
|
|
0x0a, 0x16, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x74, 0x75, 0x6e, 0x6e,
|
|
0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a, 0x6e, 0x65, 0x74, 0x5f, 0x74, 0x75,
|
|
0x6e, 0x6e, 0x65, 0x6c, 0x22, 0xa8, 0x02, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
|
|
0x12, 0x45, 0x0a, 0x10, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e,
|
|
0x66, 0x69, 0x67, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6e, 0x65, 0x74,
|
|
0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e,
|
|
0x66, 0x69, 0x67, 0x73, 0x48, 0x00, 0x52, 0x0f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
|
|
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x36, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x78, 0x79,
|
|
0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6e, 0x65,
|
|
0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x44, 0x61,
|
|
0x74, 0x61, 0x48, 0x00, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12,
|
|
0x58, 0x0a, 0x16, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x6f, 0x78,
|
|
0x69, 0x65, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
0x20, 0x2e, 0x6e, 0x65, 0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x52, 0x65, 0x67,
|
|
0x69, 0x73, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x78, 0x69, 0x65, 0x73, 0x45, 0x72, 0x72, 0x6f,
|
|
0x72, 0x48, 0x00, 0x52, 0x14, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f,
|
|
0x78, 0x69, 0x65, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x39, 0x0a, 0x0b, 0x70, 0x72, 0x6f,
|
|
0x78, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
|
|
0x2e, 0x6e, 0x65, 0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x50, 0x72, 0x6f, 0x78,
|
|
0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x45,
|
|
0x72, 0x72, 0x6f, 0x72, 0x42, 0x09, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22,
|
|
0xa4, 0x01, 0x0a, 0x0c, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73,
|
|
0x12, 0x3f, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
|
|
0x0b, 0x32, 0x25, 0x2e, 0x6e, 0x65, 0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x50,
|
|
0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66,
|
|
0x69, 0x67, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
0x73, 0x1a, 0x53, 0x0a, 0x0c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x45, 0x6e, 0x74, 0x72,
|
|
0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
|
|
0x6b, 0x65, 0x79, 0x12, 0x2d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6e, 0x65, 0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e,
|
|
0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
|
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xa7, 0x01, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x78, 0x79,
|
|
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x29, 0x0a, 0x04, 0x74, 0x79,
|
|
0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x6e, 0x65, 0x74, 0x5f, 0x74,
|
|
0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52,
|
|
0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x69,
|
|
0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x70,
|
|
0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x04,
|
|
0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x6f, 0x72, 0x74, 0x12,
|
|
0x1f, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x05,
|
|
0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50, 0x6f, 0x72, 0x74,
|
|
0x22, 0x74, 0x0a, 0x09, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x17, 0x0a,
|
|
0x07, 0x63, 0x6f, 0x6e, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
|
0x63, 0x6f, 0x6e, 0x6e, 0x49, 0x64, 0x12, 0x3a, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f,
|
|
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6e,
|
|
0x65, 0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43,
|
|
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66,
|
|
0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c,
|
|
0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x68, 0x0a, 0x14, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
|
|
0x65, 0x72, 0x50, 0x72, 0x6f, 0x78, 0x69, 0x65, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x3a,
|
|
0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x01,
|
|
0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6e, 0x65, 0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65,
|
|
0x6c, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0b, 0x70,
|
|
0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72,
|
|
0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72,
|
|
0x22, 0x77, 0x0a, 0x0a, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x3a,
|
|
0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x01,
|
|
0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6e, 0x65, 0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65,
|
|
0x6c, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0b, 0x70,
|
|
0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x17, 0x0a, 0x07, 0x63, 0x6f,
|
|
0x6e, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x6e,
|
|
0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01,
|
|
0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2a, 0x1d, 0x0a, 0x09, 0x50, 0x72, 0x6f,
|
|
0x78, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x43, 0x50, 0x10, 0x00, 0x12,
|
|
0x07, 0x0a, 0x03, 0x55, 0x44, 0x50, 0x10, 0x01, 0x32, 0x48, 0x0a, 0x0d, 0x54, 0x75, 0x6e, 0x6e,
|
|
0x65, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x37, 0x0a, 0x07, 0x43, 0x6f, 0x6e,
|
|
0x6e, 0x65, 0x63, 0x74, 0x12, 0x13, 0x2e, 0x6e, 0x65, 0x74, 0x5f, 0x74, 0x75, 0x6e, 0x6e, 0x65,
|
|
0x6c, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x13, 0x2e, 0x6e, 0x65, 0x74, 0x5f,
|
|
0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x28, 0x01,
|
|
0x30, 0x01, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74,
|
|
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
})
|
|
|
|
var (
|
|
file_pkg_proto_tunnel_proto_rawDescOnce sync.Once
|
|
file_pkg_proto_tunnel_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_pkg_proto_tunnel_proto_rawDescGZIP() []byte {
|
|
file_pkg_proto_tunnel_proto_rawDescOnce.Do(func() {
|
|
file_pkg_proto_tunnel_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_pkg_proto_tunnel_proto_rawDesc), len(file_pkg_proto_tunnel_proto_rawDesc)))
|
|
})
|
|
return file_pkg_proto_tunnel_proto_rawDescData
|
|
}
|
|
|
|
var file_pkg_proto_tunnel_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
var file_pkg_proto_tunnel_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
|
|
var file_pkg_proto_tunnel_proto_goTypes = []any{
|
|
(ProxyType)(0), // 0: net_tunnel.ProxyType
|
|
(*Message)(nil), // 1: net_tunnel.Message
|
|
(*ProxyConfigs)(nil), // 2: net_tunnel.ProxyConfigs
|
|
(*ProxyConfig)(nil), // 3: net_tunnel.ProxyConfig
|
|
(*ProxyData)(nil), // 4: net_tunnel.ProxyData
|
|
(*RegisterProxiesError)(nil), // 5: net_tunnel.RegisterProxiesError
|
|
(*ProxyError)(nil), // 6: net_tunnel.ProxyError
|
|
nil, // 7: net_tunnel.ProxyConfigs.ConfigsEntry
|
|
}
|
|
var file_pkg_proto_tunnel_proto_depIdxs = []int32{
|
|
2, // 0: net_tunnel.Message.register_configs:type_name -> net_tunnel.ProxyConfigs
|
|
4, // 1: net_tunnel.Message.proxy_data:type_name -> net_tunnel.ProxyData
|
|
5, // 2: net_tunnel.Message.register_proxies_error:type_name -> net_tunnel.RegisterProxiesError
|
|
6, // 3: net_tunnel.Message.proxy_error:type_name -> net_tunnel.ProxyError
|
|
7, // 4: net_tunnel.ProxyConfigs.configs:type_name -> net_tunnel.ProxyConfigs.ConfigsEntry
|
|
0, // 5: net_tunnel.ProxyConfig.type:type_name -> net_tunnel.ProxyType
|
|
3, // 6: net_tunnel.ProxyData.proxy_config:type_name -> net_tunnel.ProxyConfig
|
|
3, // 7: net_tunnel.RegisterProxiesError.proxy_config:type_name -> net_tunnel.ProxyConfig
|
|
3, // 8: net_tunnel.ProxyError.proxy_config:type_name -> net_tunnel.ProxyConfig
|
|
3, // 9: net_tunnel.ProxyConfigs.ConfigsEntry.value:type_name -> net_tunnel.ProxyConfig
|
|
1, // 10: net_tunnel.TunnelService.Connect:input_type -> net_tunnel.Message
|
|
1, // 11: net_tunnel.TunnelService.Connect:output_type -> net_tunnel.Message
|
|
11, // [11:12] is the sub-list for method output_type
|
|
10, // [10:11] is the sub-list for method input_type
|
|
10, // [10:10] is the sub-list for extension type_name
|
|
10, // [10:10] is the sub-list for extension extendee
|
|
0, // [0:10] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_pkg_proto_tunnel_proto_init() }
|
|
func file_pkg_proto_tunnel_proto_init() {
|
|
if File_pkg_proto_tunnel_proto != nil {
|
|
return
|
|
}
|
|
file_pkg_proto_tunnel_proto_msgTypes[0].OneofWrappers = []any{
|
|
(*Message_RegisterConfigs)(nil),
|
|
(*Message_ProxyData)(nil),
|
|
(*Message_RegisterProxiesError)(nil),
|
|
(*Message_ProxyError)(nil),
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_pkg_proto_tunnel_proto_rawDesc), len(file_pkg_proto_tunnel_proto_rawDesc)),
|
|
NumEnums: 1,
|
|
NumMessages: 7,
|
|
NumExtensions: 0,
|
|
NumServices: 1,
|
|
},
|
|
GoTypes: file_pkg_proto_tunnel_proto_goTypes,
|
|
DependencyIndexes: file_pkg_proto_tunnel_proto_depIdxs,
|
|
EnumInfos: file_pkg_proto_tunnel_proto_enumTypes,
|
|
MessageInfos: file_pkg_proto_tunnel_proto_msgTypes,
|
|
}.Build()
|
|
File_pkg_proto_tunnel_proto = out.File
|
|
file_pkg_proto_tunnel_proto_goTypes = nil
|
|
file_pkg_proto_tunnel_proto_depIdxs = nil
|
|
}
|