From 3c5684d57eaea89b903f58ea4c3336c0cdcee30f Mon Sep 17 00:00:00 2001 From: lwch Date: Fri, 30 Jul 2021 17:26:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E7=8E=B0server=E7=AB=AF=E6=A1=86?= =?UTF-8?q?=E6=9E=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +- code/network/build | 2 + code/network/connect.pb.go | 322 +++++++++++++++++++++ code/network/connect.proto | 23 ++ code/network/service.pb.go | 514 ++++++++++++++++++++++++++++++++++ code/network/service.proto | 28 ++ code/server/global/conf.go | 36 +++ code/server/main.go | 36 +++ code/server/server/handler.go | 17 ++ conf/client.yaml | 11 + conf/server.yaml | 5 + go.mod | 8 + go.sum | 119 ++++++++ run_server | 3 + 14 files changed, 1126 insertions(+), 1 deletion(-) create mode 100755 code/network/build create mode 100644 code/network/connect.pb.go create mode 100644 code/network/connect.proto create mode 100644 code/network/service.pb.go create mode 100644 code/network/service.proto create mode 100644 code/server/global/conf.go create mode 100644 code/server/server/handler.go create mode 100644 conf/client.yaml create mode 100644 conf/server.yaml create mode 100644 go.sum create mode 100755 run_server diff --git a/.gitignore b/.gitignore index 7447f89..5436305 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/bin \ No newline at end of file +/bin +/test \ No newline at end of file diff --git a/code/network/build b/code/network/build new file mode 100755 index 0000000..2b1e4fe --- /dev/null +++ b/code/network/build @@ -0,0 +1,2 @@ +#!/bin/sh +protoc --go_out=plugins=grpc:. *.proto \ No newline at end of file diff --git a/code/network/connect.pb.go b/code/network/connect.pb.go new file mode 100644 index 0000000..e2bae02 --- /dev/null +++ b/code/network/connect.pb.go @@ -0,0 +1,322 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// versions: +// protoc-gen-go v1.27.1 +// protoc v3.6.1 +// source: connect.proto + +package network + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" +) + +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 ConnectRequestType int32 + +const ( + ConnectRequest_tcp ConnectRequestType = 0 + ConnectRequest_udp ConnectRequestType = 1 +) + +// Enum value maps for ConnectRequestType. +var ( + ConnectRequestType_name = map[int32]string{ + 0: "tcp", + 1: "udp", + } + ConnectRequestType_value = map[string]int32{ + "tcp": 0, + "udp": 1, + } +) + +func (x ConnectRequestType) Enum() *ConnectRequestType { + p := new(ConnectRequestType) + *p = x + return p +} + +func (x ConnectRequestType) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (ConnectRequestType) Descriptor() protoreflect.EnumDescriptor { + return file_connect_proto_enumTypes[0].Descriptor() +} + +func (ConnectRequestType) Type() protoreflect.EnumType { + return &file_connect_proto_enumTypes[0] +} + +func (x ConnectRequestType) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use ConnectRequestType.Descriptor instead. +func (ConnectRequestType) EnumDescriptor() ([]byte, []int) { + return file_connect_proto_rawDescGZIP(), []int{0, 0} +} + +type ConnectRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Cid string `protobuf:"bytes,2,opt,name=cid,proto3" json:"cid,omitempty"` + XType ConnectRequestType `protobuf:"varint,3,opt,name=_type,json=Type,proto3,enum=network.ConnectRequestType" json:"_type,omitempty"` + Addr string `protobuf:"bytes,4,opt,name=addr,proto3" json:"addr,omitempty"` + Port uint32 `protobuf:"varint,5,opt,name=port,proto3" json:"port,omitempty"` +} + +func (x *ConnectRequest) Reset() { + *x = ConnectRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_connect_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ConnectRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ConnectRequest) ProtoMessage() {} + +func (x *ConnectRequest) ProtoReflect() protoreflect.Message { + mi := &file_connect_proto_msgTypes[0] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ConnectRequest.ProtoReflect.Descriptor instead. +func (*ConnectRequest) Descriptor() ([]byte, []int) { + return file_connect_proto_rawDescGZIP(), []int{0} +} + +func (x *ConnectRequest) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *ConnectRequest) GetCid() string { + if x != nil { + return x.Cid + } + return "" +} + +func (x *ConnectRequest) GetXType() ConnectRequestType { + if x != nil { + return x.XType + } + return ConnectRequest_tcp +} + +func (x *ConnectRequest) GetAddr() string { + if x != nil { + return x.Addr + } + return "" +} + +func (x *ConnectRequest) GetPort() uint32 { + if x != nil { + return x.Port + } + return 0 +} + +type ConnectResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Ok bool `protobuf:"varint,2,opt,name=ok,proto3" json:"ok,omitempty"` + Msg string `protobuf:"bytes,3,opt,name=msg,proto3" json:"msg,omitempty"` + Cid string `protobuf:"bytes,4,opt,name=cid,proto3" json:"cid,omitempty"` +} + +func (x *ConnectResponse) Reset() { + *x = ConnectResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_connect_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ConnectResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ConnectResponse) ProtoMessage() {} + +func (x *ConnectResponse) ProtoReflect() protoreflect.Message { + mi := &file_connect_proto_msgTypes[1] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ConnectResponse.ProtoReflect.Descriptor instead. +func (*ConnectResponse) Descriptor() ([]byte, []int) { + return file_connect_proto_rawDescGZIP(), []int{1} +} + +func (x *ConnectResponse) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *ConnectResponse) GetOk() bool { + if x != nil { + return x.Ok + } + return false +} + +func (x *ConnectResponse) GetMsg() string { + if x != nil { + return x.Msg + } + return "" +} + +func (x *ConnectResponse) GetCid() string { + if x != nil { + return x.Cid + } + return "" +} + +var File_connect_proto protoreflect.FileDescriptor + +var file_connect_proto_rawDesc = []byte{ + 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, + 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x22, 0xad, 0x01, 0x0a, 0x0f, 0x63, 0x6f, 0x6e, + 0x6e, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x12, 0x10, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, + 0x69, 0x64, 0x12, 0x32, 0x0a, 0x05, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x0e, 0x32, 0x1d, 0x2e, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x63, 0x6f, 0x6e, 0x6e, + 0x65, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x74, 0x79, 0x70, 0x65, + 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x64, 0x64, 0x72, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x64, 0x64, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, + 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x18, + 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x07, 0x0a, 0x03, 0x74, 0x63, 0x70, 0x10, 0x00, 0x12, + 0x07, 0x0a, 0x03, 0x75, 0x64, 0x70, 0x10, 0x01, 0x22, 0x5a, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x6e, + 0x65, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x12, 0x0e, 0x0a, 0x02, 0x6f, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x02, 0x6f, 0x6b, + 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, + 0x73, 0x67, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x03, 0x63, 0x69, 0x64, 0x42, 0x0b, 0x5a, 0x09, 0x2e, 0x3b, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, + 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +} + +var ( + file_connect_proto_rawDescOnce sync.Once + file_connect_proto_rawDescData = file_connect_proto_rawDesc +) + +func file_connect_proto_rawDescGZIP() []byte { + file_connect_proto_rawDescOnce.Do(func() { + file_connect_proto_rawDescData = protoimpl.X.CompressGZIP(file_connect_proto_rawDescData) + }) + return file_connect_proto_rawDescData +} + +var file_connect_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_connect_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_connect_proto_goTypes = []interface{}{ + (ConnectRequestType)(0), // 0: network.connect_request.type + (*ConnectRequest)(nil), // 1: network.connect_request + (*ConnectResponse)(nil), // 2: network.connect_response +} +var file_connect_proto_depIdxs = []int32{ + 0, // 0: network.connect_request._type:type_name -> network.connect_request.type + 1, // [1:1] is the sub-list for method output_type + 1, // [1:1] is the sub-list for method input_type + 1, // [1:1] is the sub-list for extension type_name + 1, // [1:1] is the sub-list for extension extendee + 0, // [0:1] is the sub-list for field type_name +} + +func init() { file_connect_proto_init() } +func file_connect_proto_init() { + if File_connect_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_connect_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ConnectRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_connect_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ConnectResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: file_connect_proto_rawDesc, + NumEnums: 1, + NumMessages: 2, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_connect_proto_goTypes, + DependencyIndexes: file_connect_proto_depIdxs, + EnumInfos: file_connect_proto_enumTypes, + MessageInfos: file_connect_proto_msgTypes, + }.Build() + File_connect_proto = out.File + file_connect_proto_rawDesc = nil + file_connect_proto_goTypes = nil + file_connect_proto_depIdxs = nil +} diff --git a/code/network/connect.proto b/code/network/connect.proto new file mode 100644 index 0000000..b263b7b --- /dev/null +++ b/code/network/connect.proto @@ -0,0 +1,23 @@ +syntax = "proto3"; + +package network; +option go_package=".;network"; + +message connect_request { + enum type { + tcp = 0; + udp = 1; + } + string name = 1; + string cid = 2; + type _type = 3; + string addr = 4; + uint32 port = 5; +} + +message connect_response { + string name = 1; + bool ok = 2; + string msg = 3; + string cid = 4; +} \ No newline at end of file diff --git a/code/network/service.pb.go b/code/network/service.pb.go new file mode 100644 index 0000000..b592100 --- /dev/null +++ b/code/network/service.pb.go @@ -0,0 +1,514 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// versions: +// protoc-gen-go v1.27.1 +// protoc v3.6.1 +// source: service.proto + +package network + +import ( + context "context" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" +) + +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 ControlDataType int32 + +const ( + ControlData_connect ControlDataType = 0 + ControlData_disconnect ControlDataType = 1 + ControlData_keepalive ControlDataType = 2 +) + +// Enum value maps for ControlDataType. +var ( + ControlDataType_name = map[int32]string{ + 0: "connect", + 1: "disconnect", + 2: "keepalive", + } + ControlDataType_value = map[string]int32{ + "connect": 0, + "disconnect": 1, + "keepalive": 2, + } +) + +func (x ControlDataType) Enum() *ControlDataType { + p := new(ControlDataType) + *p = x + return p +} + +func (x ControlDataType) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (ControlDataType) Descriptor() protoreflect.EnumDescriptor { + return file_service_proto_enumTypes[0].Descriptor() +} + +func (ControlDataType) Type() protoreflect.EnumType { + return &file_service_proto_enumTypes[0] +} + +func (x ControlDataType) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use ControlDataType.Descriptor instead. +func (ControlDataType) EnumDescriptor() ([]byte, []int) { + return file_service_proto_rawDescGZIP(), []int{0, 0} +} + +type ControlData struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + XType ControlDataType `protobuf:"varint,1,opt,name=_type,json=Type,proto3,enum=network.ControlDataType" json:"_type,omitempty"` + // Types that are assignable to Payload: + // *ControlData_Creq + // *ControlData_Crep + Payload isControlData_Payload `protobuf_oneof:"payload"` +} + +func (x *ControlData) Reset() { + *x = ControlData{} + if protoimpl.UnsafeEnabled { + mi := &file_service_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ControlData) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ControlData) ProtoMessage() {} + +func (x *ControlData) ProtoReflect() protoreflect.Message { + mi := &file_service_proto_msgTypes[0] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ControlData.ProtoReflect.Descriptor instead. +func (*ControlData) Descriptor() ([]byte, []int) { + return file_service_proto_rawDescGZIP(), []int{0} +} + +func (x *ControlData) GetXType() ControlDataType { + if x != nil { + return x.XType + } + return ControlData_connect +} + +func (m *ControlData) GetPayload() isControlData_Payload { + if m != nil { + return m.Payload + } + return nil +} + +func (x *ControlData) GetCreq() *ConnectRequest { + if x, ok := x.GetPayload().(*ControlData_Creq); ok { + return x.Creq + } + return nil +} + +func (x *ControlData) GetCrep() *ConnectResponse { + if x, ok := x.GetPayload().(*ControlData_Crep); ok { + return x.Crep + } + return nil +} + +type isControlData_Payload interface { + isControlData_Payload() +} + +type ControlData_Creq struct { + Creq *ConnectRequest `protobuf:"bytes,10,opt,name=creq,proto3,oneof"` +} + +type ControlData_Crep struct { + Crep *ConnectResponse `protobuf:"bytes,11,opt,name=crep,proto3,oneof"` +} + +func (*ControlData_Creq) isControlData_Payload() {} + +func (*ControlData_Crep) isControlData_Payload() {} + +type Data struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` +} + +func (x *Data) Reset() { + *x = Data{} + if protoimpl.UnsafeEnabled { + mi := &file_service_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *Data) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*Data) ProtoMessage() {} + +func (x *Data) ProtoReflect() protoreflect.Message { + mi := &file_service_proto_msgTypes[1] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use Data.ProtoReflect.Descriptor instead. +func (*Data) Descriptor() ([]byte, []int) { + return file_service_proto_rawDescGZIP(), []int{1} +} + +func (x *Data) GetData() []byte { + if x != nil { + return x.Data + } + return nil +} + +var File_service_proto protoreflect.FileDescriptor + +var file_service_proto_rawDesc = []byte{ + 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, + 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x1a, 0x0d, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, + 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xdf, 0x01, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, + 0x72, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x12, 0x2f, 0x0a, 0x05, 0x5f, 0x74, 0x79, 0x70, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1a, 0x2e, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, + 0x6b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x74, + 0x79, 0x70, 0x65, 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x04, 0x63, 0x72, 0x65, + 0x71, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, + 0x6b, 0x2e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x48, 0x00, 0x52, 0x04, 0x63, 0x72, 0x65, 0x71, 0x12, 0x2f, 0x0a, 0x04, 0x63, 0x72, 0x65, + 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, + 0x6b, 0x2e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x48, 0x00, 0x52, 0x04, 0x63, 0x72, 0x65, 0x70, 0x22, 0x32, 0x0a, 0x04, 0x74, 0x79, + 0x70, 0x65, 0x12, 0x0b, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x10, 0x00, 0x12, + 0x0e, 0x0a, 0x0a, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x10, 0x01, 0x12, + 0x0d, 0x0a, 0x09, 0x6b, 0x65, 0x65, 0x70, 0x61, 0x6c, 0x69, 0x76, 0x65, 0x10, 0x02, 0x42, 0x09, + 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x1a, 0x0a, 0x04, 0x64, 0x61, 0x74, + 0x61, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, + 0x04, 0x64, 0x61, 0x74, 0x61, 0x32, 0x73, 0x0a, 0x07, 0x6e, 0x61, 0x74, 0x70, 0x61, 0x73, 0x73, + 0x12, 0x3b, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x15, 0x2e, 0x6e, 0x65, + 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x64, 0x61, + 0x74, 0x61, 0x1a, 0x15, 0x2e, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x63, 0x6f, 0x6e, + 0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x28, 0x01, 0x30, 0x01, 0x12, 0x2b, 0x0a, + 0x07, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x12, 0x0d, 0x2e, 0x6e, 0x65, 0x74, 0x77, 0x6f, + 0x72, 0x6b, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x0d, 0x2e, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, + 0x6b, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x28, 0x01, 0x30, 0x01, 0x42, 0x0b, 0x5a, 0x09, 0x2e, 0x3b, + 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +} + +var ( + file_service_proto_rawDescOnce sync.Once + file_service_proto_rawDescData = file_service_proto_rawDesc +) + +func file_service_proto_rawDescGZIP() []byte { + file_service_proto_rawDescOnce.Do(func() { + file_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_service_proto_rawDescData) + }) + return file_service_proto_rawDescData +} + +var file_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_service_proto_goTypes = []interface{}{ + (ControlDataType)(0), // 0: network.control_data.type + (*ControlData)(nil), // 1: network.control_data + (*Data)(nil), // 2: network.data + (*ConnectRequest)(nil), // 3: network.connect_request + (*ConnectResponse)(nil), // 4: network.connect_response +} +var file_service_proto_depIdxs = []int32{ + 0, // 0: network.control_data._type:type_name -> network.control_data.type + 3, // 1: network.control_data.creq:type_name -> network.connect_request + 4, // 2: network.control_data.crep:type_name -> network.connect_response + 1, // 3: network.natpass.control:input_type -> network.control_data + 2, // 4: network.natpass.forward:input_type -> network.data + 1, // 5: network.natpass.control:output_type -> network.control_data + 2, // 6: network.natpass.forward:output_type -> network.data + 5, // [5:7] is the sub-list for method output_type + 3, // [3:5] is the sub-list for method input_type + 3, // [3:3] is the sub-list for extension type_name + 3, // [3:3] is the sub-list for extension extendee + 0, // [0:3] is the sub-list for field type_name +} + +func init() { file_service_proto_init() } +func file_service_proto_init() { + if File_service_proto != nil { + return + } + file_connect_proto_init() + if !protoimpl.UnsafeEnabled { + file_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*ControlData); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Data); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + } + file_service_proto_msgTypes[0].OneofWrappers = []interface{}{ + (*ControlData_Creq)(nil), + (*ControlData_Crep)(nil), + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: file_service_proto_rawDesc, + NumEnums: 1, + NumMessages: 2, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_service_proto_goTypes, + DependencyIndexes: file_service_proto_depIdxs, + EnumInfos: file_service_proto_enumTypes, + MessageInfos: file_service_proto_msgTypes, + }.Build() + File_service_proto = out.File + file_service_proto_rawDesc = nil + file_service_proto_goTypes = nil + file_service_proto_depIdxs = nil +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConnInterface + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion6 + +// NatpassClient is the client API for Natpass service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type NatpassClient interface { + Control(ctx context.Context, opts ...grpc.CallOption) (Natpass_ControlClient, error) + Forward(ctx context.Context, opts ...grpc.CallOption) (Natpass_ForwardClient, error) +} + +type natpassClient struct { + cc grpc.ClientConnInterface +} + +func NewNatpassClient(cc grpc.ClientConnInterface) NatpassClient { + return &natpassClient{cc} +} + +func (c *natpassClient) Control(ctx context.Context, opts ...grpc.CallOption) (Natpass_ControlClient, error) { + stream, err := c.cc.NewStream(ctx, &_Natpass_serviceDesc.Streams[0], "/network.natpass/control", opts...) + if err != nil { + return nil, err + } + x := &natpassControlClient{stream} + return x, nil +} + +type Natpass_ControlClient interface { + Send(*ControlData) error + Recv() (*ControlData, error) + grpc.ClientStream +} + +type natpassControlClient struct { + grpc.ClientStream +} + +func (x *natpassControlClient) Send(m *ControlData) error { + return x.ClientStream.SendMsg(m) +} + +func (x *natpassControlClient) Recv() (*ControlData, error) { + m := new(ControlData) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + +func (c *natpassClient) Forward(ctx context.Context, opts ...grpc.CallOption) (Natpass_ForwardClient, error) { + stream, err := c.cc.NewStream(ctx, &_Natpass_serviceDesc.Streams[1], "/network.natpass/forward", opts...) + if err != nil { + return nil, err + } + x := &natpassForwardClient{stream} + return x, nil +} + +type Natpass_ForwardClient interface { + Send(*Data) error + Recv() (*Data, error) + grpc.ClientStream +} + +type natpassForwardClient struct { + grpc.ClientStream +} + +func (x *natpassForwardClient) Send(m *Data) error { + return x.ClientStream.SendMsg(m) +} + +func (x *natpassForwardClient) Recv() (*Data, error) { + m := new(Data) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + +// NatpassServer is the server API for Natpass service. +type NatpassServer interface { + Control(Natpass_ControlServer) error + Forward(Natpass_ForwardServer) error +} + +// UnimplementedNatpassServer can be embedded to have forward compatible implementations. +type UnimplementedNatpassServer struct { +} + +func (*UnimplementedNatpassServer) Control(Natpass_ControlServer) error { + return status.Errorf(codes.Unimplemented, "method Control not implemented") +} +func (*UnimplementedNatpassServer) Forward(Natpass_ForwardServer) error { + return status.Errorf(codes.Unimplemented, "method Forward not implemented") +} + +func RegisterNatpassServer(s *grpc.Server, srv NatpassServer) { + s.RegisterService(&_Natpass_serviceDesc, srv) +} + +func _Natpass_Control_Handler(srv interface{}, stream grpc.ServerStream) error { + return srv.(NatpassServer).Control(&natpassControlServer{stream}) +} + +type Natpass_ControlServer interface { + Send(*ControlData) error + Recv() (*ControlData, error) + grpc.ServerStream +} + +type natpassControlServer struct { + grpc.ServerStream +} + +func (x *natpassControlServer) Send(m *ControlData) error { + return x.ServerStream.SendMsg(m) +} + +func (x *natpassControlServer) Recv() (*ControlData, error) { + m := new(ControlData) + if err := x.ServerStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + +func _Natpass_Forward_Handler(srv interface{}, stream grpc.ServerStream) error { + return srv.(NatpassServer).Forward(&natpassForwardServer{stream}) +} + +type Natpass_ForwardServer interface { + Send(*Data) error + Recv() (*Data, error) + grpc.ServerStream +} + +type natpassForwardServer struct { + grpc.ServerStream +} + +func (x *natpassForwardServer) Send(m *Data) error { + return x.ServerStream.SendMsg(m) +} + +func (x *natpassForwardServer) Recv() (*Data, error) { + m := new(Data) + if err := x.ServerStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + +var _Natpass_serviceDesc = grpc.ServiceDesc{ + ServiceName: "network.natpass", + HandlerType: (*NatpassServer)(nil), + Methods: []grpc.MethodDesc{}, + Streams: []grpc.StreamDesc{ + { + StreamName: "control", + Handler: _Natpass_Control_Handler, + ServerStreams: true, + ClientStreams: true, + }, + { + StreamName: "forward", + Handler: _Natpass_Forward_Handler, + ServerStreams: true, + ClientStreams: true, + }, + }, + Metadata: "service.proto", +} diff --git a/code/network/service.proto b/code/network/service.proto new file mode 100644 index 0000000..2c21aff --- /dev/null +++ b/code/network/service.proto @@ -0,0 +1,28 @@ +syntax = "proto3"; + +package network; +option go_package=".;network"; + +import "connect.proto"; + +message control_data { + enum type { + connect = 0; + disconnect = 1; + keepalive = 2; + } + type _type = 1; + oneof payload { + connect_request creq = 10; + connect_response crep = 11; + } +} + +message data { + bytes data = 1; +} + +service natpass { + rpc control(stream control_data) returns(stream control_data); + rpc forward(stream data) returns(stream data); +} \ No newline at end of file diff --git a/code/server/global/conf.go b/code/server/global/conf.go new file mode 100644 index 0000000..39d5544 --- /dev/null +++ b/code/server/global/conf.go @@ -0,0 +1,36 @@ +package global + +import ( + "os" + + "github.com/lwch/runtime" + "gopkg.in/yaml.v2" +) + +type Configure struct { + Listen uint16 + Secret string + TLSKey string + TLSCrt string +} + +func LoadConf(dir string) *Configure { + var cfg struct { + Listen uint16 `yaml:"listen"` + Secret string `yaml:"secret"` + TLS struct { + Key string `yaml:"key"` + Crt string `yaml:"crt"` + } `yaml:"tls"` + } + f, err := os.Open(dir) + runtime.Assert(err) + defer f.Close() + runtime.Assert(yaml.NewDecoder(f).Decode(&cfg)) + return &Configure{ + Listen: cfg.Listen, + Secret: cfg.Secret, + TLSKey: cfg.TLS.Key, + TLSCrt: cfg.TLS.Crt, + } +} diff --git a/code/server/main.go b/code/server/main.go index da29a2c..56fd4ef 100644 --- a/code/server/main.go +++ b/code/server/main.go @@ -1,4 +1,40 @@ package main +import ( + "flag" + "fmt" + "natpass/code/network" + "natpass/code/server/global" + "natpass/code/server/server" + "net" + "os" + + "github.com/lwch/runtime" + "google.golang.org/grpc" + "google.golang.org/grpc/credentials" +) + func main() { + conf := flag.String("conf", "", "configure file path") + flag.Parse() + + if len(*conf) == 0 { + fmt.Println("missing -conf param") + os.Exit(1) + } + + cfg := global.LoadConf(*conf) + + tls, err := credentials.NewServerTLSFromFile(cfg.TLSCrt, cfg.TLSKey) + runtime.Assert(err) + + handler := server.NewHandler() + + svr := grpc.NewServer(grpc.Creds(tls)) + network.RegisterNatpassServer(svr, handler) + + listener, err := net.Listen("tcp", fmt.Sprintf(":%d", cfg.Listen)) + runtime.Assert(err) + + runtime.Assert(svr.Serve(listener)) } diff --git a/code/server/server/handler.go b/code/server/server/handler.go new file mode 100644 index 0000000..3179435 --- /dev/null +++ b/code/server/server/handler.go @@ -0,0 +1,17 @@ +package server + +import "natpass/code/network" + +type Handler struct{} + +func NewHandler() *Handler { + return &Handler{} +} + +func (h *Handler) Control(svr network.Natpass_ControlServer) error { + return nil +} + +func (h *Handler) Forward(svr network.Natpass_ForwardServer) error { + return nil +} diff --git a/conf/client.yaml b/conf/client.yaml new file mode 100644 index 0000000..2eabcca --- /dev/null +++ b/conf/client.yaml @@ -0,0 +1,11 @@ +id: this # 客户端ID +server: 127.0.0.1:6154 # 服务器地址 +secret: 0123456789 # 预共享密钥 +tunnel: + - name: rdp # 链路名称 + target: that # 目标客户端ID + type: tcp # 连接类型tcp或udp + local_addr: 0.0.0.0 # 本地监听地址 + local_port: 3389 # 本地监听端口号 + remote_addr: 127.0.0.1 # 目标客户端连接地址 + remote_port: 3389 # 目标客户端连接端口号 \ No newline at end of file diff --git a/conf/server.yaml b/conf/server.yaml new file mode 100644 index 0000000..0884cd5 --- /dev/null +++ b/conf/server.yaml @@ -0,0 +1,5 @@ +listen: 6154 # 监听端口号 +secret: 0123456789 # 预共享密钥 +tls: + key: /dir/to/tls/key/file # tls密钥 + crt: /dir/to/tls/crt/file # tls证书 \ No newline at end of file diff --git a/go.mod b/go.mod index 72ba7b4..981197c 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,11 @@ module natpass go 1.16 + +require ( + github.com/golang/protobuf v1.5.2 // indirect + github.com/lwch/runtime v0.0.0-20190520054850-8c97e19e0c6d + google.golang.org/grpc v1.39.0 + google.golang.org/protobuf v1.27.1 + gopkg.in/yaml.v2 v2.2.3 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..a70e1b5 --- /dev/null +++ b/go.sum @@ -0,0 +1,119 @@ +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/lwch/runtime v0.0.0-20190520054850-8c97e19e0c6d h1:Xg+zzPtvX22DaoJD5Bp0tqPdB8gn5WypghIJ4fluqiQ= +github.com/lwch/runtime v0.0.0-20190520054850-8c97e19e0c6d/go.mod h1:uEt0zu1MDC7WnVvodPBGSYAD/KMKk0v36xE8UE5veM8= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20200822124328-c89045814202 h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd h1:xhmwyvizuTgC2qz7ZlMluP20uW+C3Rm0FD/WLDX8884= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.39.0 h1:Klz8I9kdtkIN6EpHHUOMLCYhTn/2WAe5a0s1hcBkdTI= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.3 h1:fvjTMHxHEw/mxHbtzPi3JCcKXQRAnQTBRo6YCJSVHKI= +gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/run_server b/run_server new file mode 100755 index 0000000..17b58ad --- /dev/null +++ b/run_server @@ -0,0 +1,3 @@ +#!/bin/sh +./build +./bin/np-svr -conf test/server.yaml \ No newline at end of file