├── README.md ├── common └── common.go ├── conf └── conf.ini ├── frame ├── common.go ├── frame.pb.go └── frame.proto ├── session └── session.go ├── stream └── stream.go ├── test ├── client │ └── client.go └── server │ └── server.go └── vendor └── github.com ├── go-ini └── ini │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── README_ZH.md │ ├── error.go │ ├── ini.go │ ├── ini_test.go │ ├── key.go │ ├── key_test.go │ ├── parser.go │ ├── parser_test.go │ ├── section.go │ ├── section_test.go │ ├── struct.go │ ├── struct_test.go │ └── testdata │ ├── UTF-16-BE-BOM.ini │ ├── UTF-16-LE-BOM.ini │ ├── UTF-8-BOM.ini │ ├── aicc.ini │ └── conf.ini └── golang └── protobuf ├── .gitignore ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── Make.protobuf ├── Makefile ├── README.md ├── _conformance ├── Makefile ├── conformance.go └── conformance_proto │ ├── conformance.pb.go │ └── conformance.proto ├── jsonpb ├── jsonpb.go ├── jsonpb_test.go └── jsonpb_test_proto │ ├── Makefile │ ├── more_test_objects.pb.go │ ├── more_test_objects.proto │ ├── test_objects.pb.go │ └── test_objects.proto ├── proto ├── Makefile ├── all_test.go ├── any_test.go ├── clone.go ├── clone_test.go ├── decode.go ├── decode_test.go ├── encode.go ├── encode_test.go ├── equal.go ├── equal_test.go ├── extensions.go ├── extensions_test.go ├── lib.go ├── message_set.go ├── message_set_test.go ├── pointer_reflect.go ├── pointer_unsafe.go ├── properties.go ├── proto3_proto │ ├── proto3.pb.go │ └── proto3.proto ├── proto3_test.go ├── size2_test.go ├── size_test.go ├── testdata │ ├── Makefile │ ├── golden_test.go │ ├── test.pb.go │ └── test.proto ├── text.go ├── text_parser.go ├── text_parser_test.go └── text_test.go ├── protoc-gen-go ├── Makefile ├── descriptor │ ├── Makefile │ └── descriptor.pb.go ├── doc.go ├── generator │ ├── Makefile │ ├── generator.go │ └── name_test.go ├── grpc │ └── grpc.go ├── link_grpc.go ├── main.go ├── plugin │ ├── Makefile │ ├── plugin.pb.go │ └── plugin.pb.golden └── testdata │ ├── Makefile │ ├── extension_base.proto │ ├── extension_extra.proto │ ├── extension_test.go │ ├── extension_user.proto │ ├── grpc.proto │ ├── imp.pb.go.golden │ ├── imp.proto │ ├── imp2.proto │ ├── imp3.proto │ ├── main_test.go │ ├── multi │ ├── multi1.proto │ ├── multi2.proto │ └── multi3.proto │ ├── my_test │ ├── test.pb.go │ ├── test.pb.go.golden │ └── test.proto │ └── proto3.proto └── ptypes ├── any.go ├── any ├── any.pb.go └── any.proto ├── any_test.go ├── doc.go ├── duration.go ├── duration ├── duration.pb.go └── duration.proto ├── duration_test.go ├── empty ├── empty.pb.go └── empty.proto ├── regen.sh ├── struct ├── struct.pb.go └── struct.proto ├── timestamp.go ├── timestamp ├── timestamp.pb.go └── timestamp.proto ├── timestamp_test.go └── wrappers ├── wrappers.pb.go └── wrappers.proto /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/README.md -------------------------------------------------------------------------------- /common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/common/common.go -------------------------------------------------------------------------------- /conf/conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/conf/conf.ini -------------------------------------------------------------------------------- /frame/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/frame/common.go -------------------------------------------------------------------------------- /frame/frame.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/frame/frame.pb.go -------------------------------------------------------------------------------- /frame/frame.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/frame/frame.proto -------------------------------------------------------------------------------- /session/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/session/session.go -------------------------------------------------------------------------------- /stream/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/stream/stream.go -------------------------------------------------------------------------------- /test/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/test/client/client.go -------------------------------------------------------------------------------- /test/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/test/server/server.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/Makefile -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/README_ZH.md -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/error.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/ini.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/ini_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/ini_test.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/key.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/key_test.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/parser.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/parser_test.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/section.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/section_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/section_test.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/struct.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/struct_test.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/UTF-16-BE-BOM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/testdata/UTF-16-BE-BOM.ini -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/UTF-16-LE-BOM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/testdata/UTF-16-LE-BOM.ini -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/UTF-8-BOM.ini: -------------------------------------------------------------------------------- 1 | [author] 2 | E-MAIL = u@gogs.io -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/aicc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/go-ini/ini/testdata/aicc.ini -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/testdata/conf.ini: -------------------------------------------------------------------------------- 1 | [author] 2 | E-MAIL = u@gogs.io -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Make.protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/Make.protobuf -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/_conformance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/_conformance/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/_conformance/conformance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/_conformance/conformance.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/_conformance/conformance_proto/conformance.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/_conformance/conformance_proto/conformance.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/_conformance/conformance_proto/conformance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/_conformance/conformance_proto/conformance.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/all_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/any_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/clone_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/decode_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/encode_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/equal_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/extensions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/extensions_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/message_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/message_set_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/pointer_reflect.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/properties.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/proto3_proto/proto3.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/proto3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/proto3_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/size2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/size2_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/size_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/testdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/testdata/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/testdata/golden_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/testdata/golden_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/testdata/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/testdata/test.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/testdata/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/testdata/test.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/text_parser_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/proto/text_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/descriptor.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/descriptor.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/generator/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/generator/generator.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/generator/name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/generator/name_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/grpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/grpc/grpc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/link_grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/link_grpc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/main.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/plugin/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.golden -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/Makefile -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/extension_base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/extension_base.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/extension_extra.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/extension_extra.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/extension_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/extension_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/extension_user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/extension_user.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/grpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/grpc.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/imp.pb.go.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/imp.pb.go.golden -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/imp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/imp.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/imp2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/imp2.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/imp3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/imp3.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/main_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi1.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi2.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi3.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go.golden -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/protoc-gen-go/testdata/proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/protoc-gen-go/testdata/proto3.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any/any.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/any/any.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/any/any.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/any_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/duration.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/duration/duration.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/duration/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/duration/duration.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/duration_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/empty/empty.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/empty/empty.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/empty/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/empty/empty.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/regen.sh -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/struct/struct.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/struct/struct.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/struct/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/struct/struct.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.proto -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/timestamp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/timestamp_test.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/wrappers/wrappers.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/wrappers/wrappers.pb.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/wrappers/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicle-lin/golang-csp/HEAD/vendor/github.com/golang/protobuf/ptypes/wrappers/wrappers.proto --------------------------------------------------------------------------------