├── .github └── workflows │ └── build-and-release.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── cpp-lib ├── .ccls-root ├── .clang-format ├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── Makefile ├── README.md ├── conanfile.py ├── conanprofile ├── include │ ├── pitaya.h │ └── pitaya │ │ ├── binding_storage.h │ │ ├── c_wrapper.h │ │ ├── cluster.h │ │ ├── constants.h │ │ ├── etcd_config.h │ │ ├── grpc_config.h │ │ ├── nats_client.h │ │ ├── nats_config.h │ │ ├── protos │ │ ├── bind.grpc.pb.cc │ │ ├── bind.grpc.pb.h │ │ ├── bind.pb.cc │ │ ├── bind.pb.h │ │ ├── bind_mock.grpc.pb.h │ │ ├── doc.grpc.pb.cc │ │ ├── doc.grpc.pb.h │ │ ├── doc.pb.cc │ │ ├── doc.pb.h │ │ ├── doc_mock.grpc.pb.h │ │ ├── docmsg.grpc.pb.cc │ │ ├── docmsg.grpc.pb.h │ │ ├── docmsg.pb.cc │ │ ├── docmsg.pb.h │ │ ├── docmsg_mock.grpc.pb.h │ │ ├── error.grpc.pb.cc │ │ ├── error.grpc.pb.h │ │ ├── error.pb.cc │ │ ├── error.pb.h │ │ ├── error_mock.grpc.pb.h │ │ ├── kick.grpc.pb.cc │ │ ├── kick.grpc.pb.h │ │ ├── kick.pb.cc │ │ ├── kick.pb.h │ │ ├── kick_mock.grpc.pb.h │ │ ├── msg.grpc.pb.cc │ │ ├── msg.grpc.pb.h │ │ ├── msg.pb.cc │ │ ├── msg.pb.h │ │ ├── msg_mock.grpc.pb.h │ │ ├── pitaya.grpc.pb.cc │ │ ├── pitaya.grpc.pb.h │ │ ├── pitaya.pb.cc │ │ ├── pitaya.pb.h │ │ ├── pitaya_mock.grpc.pb.h │ │ ├── protodescriptor.grpc.pb.cc │ │ ├── protodescriptor.grpc.pb.h │ │ ├── protodescriptor.pb.cc │ │ ├── protodescriptor.pb.h │ │ ├── protodescriptor_mock.grpc.pb.h │ │ ├── push.grpc.pb.cc │ │ ├── push.grpc.pb.h │ │ ├── push.pb.cc │ │ ├── push.pb.h │ │ ├── push_mock.grpc.pb.h │ │ ├── request.grpc.pb.cc │ │ ├── request.grpc.pb.h │ │ ├── request.pb.cc │ │ ├── request.pb.h │ │ ├── request_mock.grpc.pb.h │ │ ├── response.grpc.pb.cc │ │ ├── response.grpc.pb.h │ │ ├── response.pb.cc │ │ ├── response.pb.h │ │ ├── response_mock.grpc.pb.h │ │ ├── session.grpc.pb.cc │ │ ├── session.grpc.pb.h │ │ ├── session.pb.cc │ │ ├── session.pb.h │ │ └── session_mock.grpc.pb.h │ │ ├── rpc_client.h │ │ ├── rpc_server.h │ │ ├── service_discovery.h │ │ ├── utils.h │ │ └── utils │ │ ├── semaphore.h │ │ ├── sync_deque.h │ │ ├── sync_map.h │ │ ├── sync_vector.h │ │ └── ticker.h ├── run-tests-with-coverage.sh ├── src │ ├── pitaya.cpp │ ├── pitaya │ │ ├── c_wrapper.cpp │ │ ├── cluster.cpp │ │ ├── etcd_binding_storage.cpp │ │ ├── etcd_binding_storage.h │ │ ├── etcd_client.h │ │ ├── etcd_client_v3.cpp │ │ ├── etcd_client_v3.h │ │ ├── etcdv3_service_discovery.cpp │ │ ├── etcdv3_service_discovery.h │ │ ├── etcdv3_service_discovery │ │ │ ├── worker.cpp │ │ │ └── worker.h │ │ ├── grpc │ │ │ ├── rpc_client.cpp │ │ │ ├── rpc_client.h │ │ │ ├── rpc_server.cpp │ │ │ └── rpc_server.h │ │ ├── nats │ │ │ ├── rpc_client.cpp │ │ │ ├── rpc_client.h │ │ │ ├── rpc_server.cpp │ │ │ └── rpc_server.h │ │ ├── nats_client.cpp │ │ ├── utils.cpp │ │ └── utils │ │ │ ├── grpc.cpp │ │ │ ├── grpc.h │ │ │ ├── string_utils.cpp │ │ │ ├── string_utils.h │ │ │ └── ticker.cpp │ └── pitaya_cluster.cpp ├── test │ ├── c_wrapper_test.cpp │ ├── cluster_test.cpp │ ├── etcdv3_service_discovery_test.cpp │ ├── grpc_client_test.cpp │ ├── grpc_server_test.cpp │ ├── main_test.cpp │ ├── mock_binding_storage.h │ ├── mock_etcd_client.h │ ├── mock_nats_client.h │ ├── mock_rpc_client.h │ ├── mock_rpc_server.h │ ├── mock_service_discovery.h │ ├── nats_rpc_client_test.cpp │ ├── nats_rpc_server_test.cpp │ ├── test_common.h │ ├── ticker_test.cpp │ └── utils_test.cpp ├── test_package │ ├── CMakeLists.txt │ ├── conanfile.py │ └── example.cpp └── version.txt ├── docker-compose.yml ├── docs ├── RELEASE_PROCESS.md └── UBUNTU_22_04_COMPATIBILITY.md ├── go-server ├── Gopkg.lock ├── Gopkg.toml ├── go.mod ├── go.sum ├── main.go ├── protos │ ├── cluster.pb.go │ └── cluster.proto └── services │ └── connector.go ├── package.sh ├── pitaya-sharp ├── .editorconfig ├── .gitignore ├── .idea │ └── .idea.pitaya-sharp │ │ └── .idea │ │ └── vcs.xml ├── ExampleEFCore │ ├── ExampleEFCore.csproj │ ├── Migrations │ │ ├── 20190328153447_InitialMigration.Designer.cs │ │ ├── 20190328153447_InitialMigration.cs │ │ └── ExampleContextModelSnapshot.cs │ ├── Protos │ │ ├── Answer.proto │ │ ├── AuthenticateArgs.proto │ │ ├── ChangeNameArg.proto │ │ └── user.proto │ └── src │ │ ├── App.cs │ │ ├── Extensions │ │ └── StringExtensions.cs │ │ ├── Gen │ │ └── Protos │ │ │ ├── Answer.cs │ │ │ ├── AuthenticateArgs.cs │ │ │ ├── ChangeNameArg.cs │ │ │ └── User.cs │ │ ├── Models │ │ └── Models.cs │ │ └── Servers │ │ └── BusinessLogic │ │ └── Handlers │ │ └── UserHandler.cs ├── Makefile ├── NPitaya-csproj │ └── NPitaya.csproj ├── NPitaya.Tests │ ├── Metric │ │ ├── Prometheus.cs │ │ └── StatsDataDog.cs │ ├── NPitaya.Tests.csproj │ └── Tests │ │ ├── Integration │ │ ├── GrpcCluster.cs │ │ ├── NatsBackwardCompatibility.cs │ │ └── NatsCluster.cs │ │ ├── Models.cs │ │ └── Serializer │ │ ├── JSONSerializerTests.cs │ │ └── ProtobufSerializerTests.cs ├── NPitaya │ ├── Runtime.meta │ ├── Runtime │ │ ├── Constants.meta │ │ ├── Constants │ │ │ ├── Routes.cs │ │ │ └── Routes.cs.meta │ │ ├── Metrics.meta │ │ ├── Metrics │ │ │ ├── Constants.cs │ │ │ ├── Constants.cs.meta │ │ │ ├── IMetricsReporter.cs │ │ │ ├── IMetricsReporter.cs.meta │ │ │ ├── MetricsReporters.cs │ │ │ ├── MetricsReporters.cs.meta │ │ │ ├── PrometheusMetricsReporter.cs │ │ │ ├── PrometheusMetricsReporter.cs.meta │ │ │ ├── StatsdMetricsReporter.cs │ │ │ └── StatsdMetricsReporter.cs.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── BaseHandler.cs │ │ │ ├── BaseHandler.cs.meta │ │ │ ├── BaseRemote.cs │ │ │ ├── BaseRemote.cs.meta │ │ │ ├── IRemote.cs │ │ │ ├── IRemote.cs.meta │ │ │ ├── Logger.cs │ │ │ ├── Logger.cs.meta │ │ │ ├── PitayaSession.cs │ │ │ ├── PitayaSession.cs.meta │ │ │ ├── Remote.cs │ │ │ ├── Remote.cs.meta │ │ │ ├── RemoteMethod.cs │ │ │ └── RemoteMethod.cs.meta │ │ ├── NativeInterop.cs │ │ ├── NativeInterop.cs.meta │ │ ├── PitayaCluster.API.cs │ │ ├── PitayaCluster.API.cs.meta │ │ ├── PitayaCluster.Native.cs │ │ ├── PitayaCluster.Native.cs.meta │ │ ├── PitayaCluster.RPC.cs │ │ ├── PitayaCluster.RPC.cs.meta │ │ ├── PitayaException.cs │ │ ├── PitayaException.cs.meta │ │ ├── PitayaRouteNotFoundException.cs │ │ ├── PitayaRouteNotFoundException.cs.meta │ │ ├── PitayaTimeoutException.cs │ │ ├── PitayaTimeoutException.cs.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── runtimes.meta │ │ │ └── runtimes │ │ │ │ ├── linux-armv8.meta │ │ │ │ ├── linux-armv8 │ │ │ │ ├── libpitaya_cpp.so │ │ │ │ └── libpitaya_cpp.so.meta │ │ │ │ ├── linux-x86_64.meta │ │ │ │ ├── linux-x86_64 │ │ │ │ ├── libpitaya_cpp.so │ │ │ │ └── libpitaya_cpp.so.meta │ │ │ │ ├── macos-arm64.meta │ │ │ │ ├── macos-arm64 │ │ │ │ ├── libpitaya_cpp.dylib │ │ │ │ └── libpitaya_cpp.dylib.meta │ │ │ │ ├── macos-x86_64.meta │ │ │ │ ├── macos-x86_64 │ │ │ │ ├── libpitaya_cpp.dylib │ │ │ │ └── libpitaya_cpp.dylib.meta │ │ │ │ ├── windows-x86_64.meta │ │ │ │ └── windows-x86_64 │ │ │ │ ├── libpitaya_cpp.dll │ │ │ │ └── libpitaya_cpp.dll.meta │ │ ├── Serializer.meta │ │ ├── Serializer │ │ │ ├── ISerializer.cs │ │ │ ├── ISerializer.cs.meta │ │ │ ├── JSONSerializer.cs │ │ │ ├── JSONSerializer.cs.meta │ │ │ ├── ProtobufSerializer.cs │ │ │ ├── ProtobufSerializer.cs.meta │ │ │ ├── SerializerUtils.cs │ │ │ └── SerializerUtils.cs.meta │ │ ├── Utils.meta │ │ ├── Utils │ │ │ ├── LimitedConcurrencyLevelTaskScheduler.cs │ │ │ ├── LimitedConcurrencyLevelTaskScheduler.cs.meta │ │ │ ├── PitayaSimpleJson.cs │ │ │ ├── PitayaSimpleJson.cs.meta │ │ │ ├── Utils.cs │ │ │ └── Utils.cs.meta │ │ ├── gen.meta │ │ ├── gen │ │ │ ├── Bind.cs │ │ │ ├── Bind.cs.meta │ │ │ ├── Doc.cs │ │ │ ├── Doc.cs.meta │ │ │ ├── Docmsg.cs │ │ │ ├── Docmsg.cs.meta │ │ │ ├── Error.cs │ │ │ ├── Error.cs.meta │ │ │ ├── Kick.cs │ │ │ ├── Kick.cs.meta │ │ │ ├── Msg.cs │ │ │ ├── Msg.cs.meta │ │ │ ├── Pitaya.cs │ │ │ ├── Pitaya.cs.meta │ │ │ ├── Protodescriptor.cs │ │ │ ├── Protodescriptor.cs.meta │ │ │ ├── Push.cs │ │ │ ├── Push.cs.meta │ │ │ ├── Request.cs │ │ │ ├── Request.cs.meta │ │ │ ├── Response.cs │ │ │ ├── Response.cs.meta │ │ │ ├── Session.cs │ │ │ └── Session.cs.meta │ │ ├── lib.meta │ │ ├── lib │ │ │ ├── netstandard2.0.meta │ │ │ └── netstandard2.0 │ │ │ │ ├── Prometheus.NetStandard.dll │ │ │ │ ├── Prometheus.NetStandard.dll.meta │ │ │ │ ├── StatsdClient.dll │ │ │ │ └── StatsdClient.dll.meta │ │ ├── wildlifestudios.npitaya.asmdef │ │ └── wildlifestudios.npitaya.asmdef.meta │ ├── package.json │ └── package.json.meta ├── docker-compose.yml ├── exampleapp │ ├── Handlers │ │ └── TestHandler.cs │ ├── Program.cs │ ├── exampleapp.csproj │ ├── gen │ │ └── Cluster.cs │ └── remotes │ │ └── TestRemote.cs ├── netfx.props ├── packages │ ├── Newtonsoft.Json.12.0.1 │ │ ├── .signature.p7s │ │ ├── LICENSE.md │ │ ├── Newtonsoft.Json.12.0.1.nupkg │ │ └── lib │ │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ ├── NuGet.Build.Packaging.0.2.0 │ │ └── NuGet.Build.Packaging.0.2.0.nupkg │ └── protobuf.net35.3.5.1 │ │ ├── lib │ │ ├── net35 │ │ │ ├── Google.Protobuf.dll │ │ │ └── Google.Protobuf.xml │ │ ├── net45 │ │ │ ├── Google.Protobuf.dll │ │ │ └── Google.Protobuf.xml │ │ └── netstandard1.0 │ │ │ ├── Google.Protobuf.dll │ │ │ └── Google.Protobuf.xml │ │ ├── protobuf.net35.3.5.1.nupkg │ │ └── src │ │ └── Google.Protobuf │ │ ├── ByteArray.cs │ │ ├── ByteString.cs │ │ ├── CodedInputStream.cs │ │ ├── CodedOutputStream.ComputeSize.cs │ │ ├── CodedOutputStream.cs │ │ ├── Collections │ │ ├── Lists.cs │ │ ├── MapField.cs │ │ ├── ProtobufEqualityComparers.cs │ │ ├── ReadOnlyDictionary.cs │ │ └── RepeatedField.cs │ │ ├── Compatibility │ │ ├── PropertyInfoExtensions.cs │ │ ├── StreamExtensions.cs │ │ └── TypeExtensions.cs │ │ ├── FieldCodec.cs │ │ ├── FrameworkPortability.cs │ │ ├── Google.Protobuf.csproj │ │ ├── ICustomDiagnosticMessage.cs │ │ ├── IDeepCloneable.cs │ │ ├── IMessage.cs │ │ ├── InvalidJsonException.cs │ │ ├── InvalidProtocolBufferException.cs │ │ ├── JsonFormatter.cs │ │ ├── JsonParser.cs │ │ ├── JsonToken.cs │ │ ├── JsonTokenizer.cs │ │ ├── LimitedInputStream.cs │ │ ├── MessageExtensions.cs │ │ ├── MessageParser.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ProtoPreconditions.cs │ │ ├── Reflection │ │ ├── CustomOptions.cs │ │ ├── Descriptor.cs │ │ ├── DescriptorBase.cs │ │ ├── DescriptorPool.cs │ │ ├── DescriptorUtil.cs │ │ ├── DescriptorValidationException.cs │ │ ├── EnumDescriptor.cs │ │ ├── EnumValueDescriptor.cs │ │ ├── FieldAccessorBase.cs │ │ ├── FieldDescriptor.cs │ │ ├── FieldType.cs │ │ ├── FileDescriptor.cs │ │ ├── GeneratedClrTypeInfo.cs │ │ ├── IDescriptor.cs │ │ ├── IFieldAccessor.cs │ │ ├── MapFieldAccessor.cs │ │ ├── MessageDescriptor.cs │ │ ├── MethodDescriptor.cs │ │ ├── OneofAccessor.cs │ │ ├── OneofDescriptor.cs │ │ ├── OriginalNameAttribute.cs │ │ ├── PackageDescriptor.cs │ │ ├── PartialClasses.cs │ │ ├── ReflectionUtil.cs │ │ ├── RepeatedFieldAccessor.cs │ │ ├── ServiceDescriptor.cs │ │ ├── SingleFieldAccessor.cs │ │ └── TypeRegistry.cs │ │ ├── UnknownField.cs │ │ ├── UnknownFieldSet.cs │ │ ├── WellKnownTypes │ │ ├── Any.cs │ │ ├── AnyPartial.cs │ │ ├── Api.cs │ │ ├── Duration.cs │ │ ├── DurationPartial.cs │ │ ├── Empty.cs │ │ ├── FieldMask.cs │ │ ├── FieldMaskPartial.cs │ │ ├── SourceContext.cs │ │ ├── Struct.cs │ │ ├── TimeExtensions.cs │ │ ├── Timestamp.cs │ │ ├── TimestampPartial.cs │ │ ├── Type.cs │ │ ├── ValuePartial.cs │ │ ├── Wrappers.cs │ │ └── WrappersPartial.cs │ │ └── WireFormat.cs └── pitaya-sharp.sln ├── precompiled ├── libpitaya_cpp.bundle ├── libpitaya_cpp.bundle.meta ├── libpitaya_cpp.dll ├── libpitaya_cpp.dll.meta ├── libpitaya_cpp.dylib ├── libpitaya_cpp.dylib.meta ├── libpitaya_cpp.so └── libpitaya_cpp.so.meta ├── python-example ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── example.py ├── example_remote.py ├── gen │ └── cluster_pb2.py ├── libpitaya_cpp.dylib ├── libpitaya_cpp.so └── requirements.txt ├── python-lib ├── README.md ├── pitayaserver │ ├── __init__.py │ ├── c_interop.py │ ├── gen │ │ ├── __init__.py │ │ ├── bind_pb2.py │ │ ├── cluster_pb2.py │ │ ├── doc_pb2.py │ │ ├── docmsg_pb2.py │ │ ├── error_pb2.py │ │ ├── kick_pb2.py │ │ ├── msg_pb2.py │ │ ├── pitaya_pb2.py │ │ ├── protodescriptor_pb2.py │ │ ├── push_pb2.py │ │ ├── request_pb2.py │ │ ├── response_pb2.py │ │ └── session_pb2.py │ ├── pitayaserver.py │ ├── remote.py │ └── route.py └── setup.py ├── unity ├── .gitignore ├── Assets │ ├── Editor.meta │ ├── Editor │ │ ├── MediationAdapterDependencies.xml │ │ └── MediationAdapterDependencies.xml.meta │ ├── Gen.meta │ ├── Gen │ │ ├── Cluster.cs │ │ └── Cluster.cs.meta │ ├── LibPitayaExample.cs │ ├── LibPitayaExample.cs.meta │ ├── LibPitayaExampleScene.unity │ ├── LibPitayaExampleScene.unity.meta │ ├── MobileDependencyResolver.meta │ ├── MobileDependencyResolver │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── Google.IOSResolver.dll │ │ │ ├── Google.IOSResolver.dll.meta │ │ │ ├── Google.JarResolver.dll │ │ │ ├── Google.JarResolver.dll.meta │ │ │ ├── Google.VersionHandler.dll │ │ │ ├── Google.VersionHandler.dll.meta │ │ │ ├── Google.VersionHandlerImpl.dll │ │ │ ├── Google.VersionHandlerImpl.dll.meta │ │ │ ├── mobile-dependency-resolver.txt │ │ │ └── mobile-dependency-resolver.txt.meta │ ├── Plugins.meta │ ├── Plugins │ │ └── Editor.meta │ ├── Remotes.meta │ ├── Remotes │ │ ├── TestRemote.cs │ │ └── TestRemote.cs.meta │ ├── Resources.meta │ └── Resources │ │ ├── BillingMode.json │ │ └── BillingMode.json.meta ├── MY_LOG_FILE.txt ├── Makefile ├── NPitaya.nuspec ├── Packages │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── GvhProjectSettings.xml │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ │ └── com.unity.services.mediation │ │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── boot.config ├── UserSettings │ ├── EditorUserSettings.asset │ ├── Layouts │ │ └── default-2021.dwlt │ └── Search.settings └── mono_crash.mem.19927.1.blob ├── update-version.sh ├── update_version.py └── vendor ├── github.com ├── DataDog │ └── datadog-go │ │ ├── LICENSE.txt │ │ └── statsd │ │ ├── README.md │ │ ├── statsd.go │ │ ├── udp.go │ │ └── uds.go ├── beorn7 │ └── perks │ │ ├── LICENSE │ │ └── quantile │ │ ├── exampledata.txt │ │ └── stream.go ├── codahale │ └── hdrhistogram │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── hdr.go │ │ └── window.go ├── coreos │ └── etcd │ │ ├── Documentation │ │ └── README.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── auth │ │ └── authpb │ │ │ ├── auth.pb.go │ │ │ └── auth.proto │ │ ├── clientv3 │ │ ├── README.md │ │ ├── auth.go │ │ ├── client.go │ │ ├── cluster.go │ │ ├── compact_op.go │ │ ├── compare.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── health_balancer.go │ │ ├── kv.go │ │ ├── lease.go │ │ ├── logger.go │ │ ├── maintenance.go │ │ ├── namespace │ │ │ ├── doc.go │ │ │ ├── kv.go │ │ │ ├── lease.go │ │ │ ├── util.go │ │ │ └── watch.go │ │ ├── op.go │ │ ├── options.go │ │ ├── ready_wait.go │ │ ├── retry.go │ │ ├── sort.go │ │ ├── txn.go │ │ └── watch.go │ │ ├── cmd │ │ ├── etcd │ │ ├── etcdctl │ │ ├── functional │ │ └── tools │ │ ├── etcdserver │ │ ├── api │ │ │ └── v3rpc │ │ │ │ └── rpctypes │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ └── md.go │ │ └── etcdserverpb │ │ │ ├── etcdserver.pb.go │ │ │ ├── etcdserver.proto │ │ │ ├── raft_internal.pb.go │ │ │ ├── raft_internal.proto │ │ │ ├── raft_internal_stringer.go │ │ │ ├── rpc.pb.go │ │ │ └── rpc.proto │ │ ├── mvcc │ │ └── mvccpb │ │ │ ├── kv.pb.go │ │ │ └── kv.proto │ │ └── pkg │ │ └── types │ │ ├── doc.go │ │ ├── id.go │ │ ├── set.go │ │ ├── slice.go │ │ ├── urls.go │ │ └── urlsmap.go ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go ├── go-playground │ ├── locales │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── currency │ │ │ └── currency.go │ │ ├── logo.png │ │ └── rules.go │ └── universal-translator │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors.go │ │ ├── import_export.go │ │ ├── logo.png │ │ ├── translator.go │ │ └── universal_translator.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ └── timestamp_gogo.go │ │ └── protoc-gen-gogo │ │ └── descriptor │ │ ├── Makefile │ │ ├── descriptor.go │ │ ├── descriptor.pb.go │ │ ├── descriptor_gostring.gen.go │ │ └── helper.go ├── golang │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── discard.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── table_marshal.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── text.go │ │ └── text_parser.go │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ ├── any.pb.go │ │ └── any.proto │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ ├── duration.pb.go │ │ └── duration.proto │ │ ├── timestamp.go │ │ └── timestamp │ │ ├── timestamp.pb.go │ │ └── timestamp.proto ├── google │ └── uuid │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── gorilla │ └── websocket │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── client_clone.go │ │ ├── client_clone_legacy.go │ │ ├── compression.go │ │ ├── conn.go │ │ ├── conn_read.go │ │ ├── conn_read_legacy.go │ │ ├── doc.go │ │ ├── json.go │ │ ├── mask.go │ │ ├── mask_safe.go │ │ ├── prepared.go │ │ ├── server.go │ │ └── util.go ├── hashicorp │ └── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── hcl.go │ │ ├── hcl │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── walk.go │ │ ├── parser │ │ │ ├── error.go │ │ │ └── parser.go │ │ ├── printer │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ ├── scanner │ │ │ └── scanner.go │ │ ├── strconv │ │ │ └── quote.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── json │ │ ├── parser │ │ │ ├── flatten.go │ │ │ └── parser.go │ │ ├── scanner │ │ │ └── scanner.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── matttproud │ └── golang_protobuf_extensions │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── pbutil │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go ├── mitchellh │ └── mapstructure │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ └── mapstructure.go ├── nats-io │ ├── go-nats │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── TODO.md │ │ ├── context.go │ │ ├── enc.go │ │ ├── encoders │ │ │ └── builtin │ │ │ │ ├── default_enc.go │ │ │ │ ├── gob_enc.go │ │ │ │ └── json_enc.go │ │ ├── nats.go │ │ ├── netchan.go │ │ ├── parser.go │ │ ├── staticcheck.ignore │ │ ├── timer.go │ │ └── util │ │ │ ├── tls.go │ │ │ └── tls_go17.go │ └── nuid │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── nuid.go ├── opentracing │ └── opentracing-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ext │ │ └── tags.go │ │ ├── globaltracer.go │ │ ├── gocontext.go │ │ ├── log │ │ ├── field.go │ │ └── util.go │ │ ├── noop.go │ │ ├── propagation.go │ │ ├── span.go │ │ └── tracer.go ├── pelletier │ └── go-toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmark.json │ │ ├── benchmark.sh │ │ ├── benchmark.toml │ │ ├── benchmark.yml │ │ ├── doc.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── marshal.go │ │ ├── marshal_test.toml │ │ ├── parser.go │ │ ├── position.go │ │ ├── test.sh │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomltree_create.go │ │ └── tomltree_write.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ └── stack.go ├── prometheus │ ├── client_golang │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── prometheus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── collector.go │ │ │ ├── counter.go │ │ │ ├── desc.go │ │ │ ├── doc.go │ │ │ ├── expvar_collector.go │ │ │ ├── fnv.go │ │ │ ├── gauge.go │ │ │ ├── go_collector.go │ │ │ ├── histogram.go │ │ │ ├── http.go │ │ │ ├── metric.go │ │ │ ├── process_collector.go │ │ │ ├── registry.go │ │ │ ├── summary.go │ │ │ ├── untyped.go │ │ │ ├── value.go │ │ │ └── vec.go │ ├── client_model │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── go │ │ │ └── metrics.pb.go │ │ └── ruby │ │ │ └── LICENSE │ ├── common │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── expfmt │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── expfmt.go │ │ │ ├── fuzz.go │ │ │ ├── text_create.go │ │ │ └── text_parse.go │ │ ├── internal │ │ │ └── bitbucket.org │ │ │ │ └── ww │ │ │ │ └── goautoneg │ │ │ │ ├── README.txt │ │ │ │ └── autoneg.go │ │ └── model │ │ │ ├── alert.go │ │ │ ├── fingerprinting.go │ │ │ ├── fnv.go │ │ │ ├── labels.go │ │ │ ├── labelset.go │ │ │ ├── metric.go │ │ │ ├── model.go │ │ │ ├── signature.go │ │ │ ├── silence.go │ │ │ ├── time.go │ │ │ └── value.go │ └── procfs │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE │ │ ├── README.md │ │ ├── buddyinfo.go │ │ ├── doc.go │ │ ├── fixtures.ttar │ │ ├── fs.go │ │ ├── internal │ │ └── util │ │ │ └── parse.go │ │ ├── ipvs.go │ │ ├── mdstat.go │ │ ├── mountstats.go │ │ ├── net_dev.go │ │ ├── nfs │ │ ├── nfs.go │ │ ├── parse.go │ │ ├── parse_nfs.go │ │ └── parse_nfsd.go │ │ ├── proc.go │ │ ├── proc_io.go │ │ ├── proc_limits.go │ │ ├── proc_ns.go │ │ ├── proc_stat.go │ │ ├── stat.go │ │ ├── ttar │ │ ├── xfrm.go │ │ └── xfs │ │ ├── parse.go │ │ └── xfs.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_bsd.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_linux.go │ │ ├── text_formatter.go │ │ └── writer.go ├── spf13 │ ├── afero │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── httpFs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ └── caste.go │ ├── jwalterweatherman │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── default_notepad.go │ │ ├── log_counter.go │ │ └── notepad.go │ ├── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float64.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── flags.go │ │ ├── util.go │ │ └── viper.go ├── topfreegames │ └── pitaya │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── acceptor │ │ ├── acceptor.go │ │ ├── tcp_acceptor.go │ │ └── ws_acceptor.go │ │ ├── agent │ │ ├── agent.go │ │ └── agent_remote.go │ │ ├── app.go │ │ ├── cluster │ │ ├── cluster.go │ │ ├── etcd_service_discovery.go │ │ ├── grpc_rpc_client.go │ │ ├── grpc_rpc_server.go │ │ ├── nats_rpc_client.go │ │ ├── nats_rpc_common.go │ │ ├── nats_rpc_server.go │ │ ├── server.go │ │ └── service_discovery.go │ │ ├── component.go │ │ ├── component │ │ ├── base.go │ │ ├── component.go │ │ ├── method.go │ │ ├── options.go │ │ └── service.go │ │ ├── config │ │ └── config.go │ │ ├── constants │ │ ├── const.go │ │ ├── errors.go │ │ └── version.go │ │ ├── context │ │ └── context.go │ │ ├── defaultpipelines │ │ ├── default_struct_validator.go │ │ └── struct_validator.go │ │ ├── docgenerator │ │ └── generator.go │ │ ├── errors │ │ └── errors.go │ │ ├── group.go │ │ ├── interfaces │ │ └── interfaces.go │ │ ├── internal │ │ ├── codec │ │ │ ├── constants.go │ │ │ ├── packet_decoder.go │ │ │ ├── packet_encoder.go │ │ │ ├── pomelo_packet_decoder.go │ │ │ └── pomelo_packet_encoder.go │ │ ├── message │ │ │ ├── message.go │ │ │ └── message_encoder.go │ │ └── packet │ │ │ ├── constants.go │ │ │ └── packet.go │ │ ├── kick.go │ │ ├── logger │ │ └── logger.go │ │ ├── metrics │ │ ├── constants.go │ │ ├── prometheus_reporter.go │ │ ├── report.go │ │ ├── reporter_interfaces.go │ │ └── statsd_reporter.go │ │ ├── module.go │ │ ├── modules │ │ ├── api_docs_gen.go │ │ ├── base.go │ │ ├── binary.go │ │ ├── binding_storage.go │ │ └── unique_session.go │ │ ├── pipeline.go │ │ ├── pipeline │ │ └── pipeline.go │ │ ├── protos │ │ ├── bind.pb.go │ │ ├── error.pb.go │ │ ├── kick.pb.go │ │ ├── msg.pb.go │ │ ├── pitaya.pb.go │ │ ├── push.pb.go │ │ ├── request.pb.go │ │ ├── response.pb.go │ │ └── session.pb.go │ │ ├── push.go │ │ ├── remote │ │ └── sys.go │ │ ├── route │ │ └── route.go │ │ ├── router │ │ └── router.go │ │ ├── rpc.go │ │ ├── serialize │ │ ├── json │ │ │ └── json.go │ │ └── serializer.go │ │ ├── service │ │ ├── handler.go │ │ ├── remote.go │ │ └── util.go │ │ ├── session │ │ └── session.go │ │ ├── timer.go │ │ ├── timer │ │ └── timer.go │ │ ├── tracing │ │ ├── jaeger │ │ │ └── config.go │ │ ├── log.go │ │ └── span.go │ │ └── util │ │ ├── compression │ │ └── compression.go │ │ └── util.go └── uber │ ├── jaeger-client-go │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── DCO │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── RELEASE.md │ ├── baggage_setter.go │ ├── config │ │ ├── config.go │ │ ├── config_env.go │ │ └── options.go │ ├── constants.go │ ├── context.go │ ├── contrib_observer.go │ ├── doc.go │ ├── glide.lock │ ├── glide.yaml │ ├── header.go │ ├── internal │ │ ├── baggage │ │ │ ├── remote │ │ │ │ ├── options.go │ │ │ │ └── restriction_manager.go │ │ │ └── restriction_manager.go │ │ ├── spanlog │ │ │ └── json.go │ │ └── throttler │ │ │ ├── remote │ │ │ ├── options.go │ │ │ └── throttler.go │ │ │ └── throttler.go │ ├── interop.go │ ├── jaeger_tag.go │ ├── jaeger_thrift_span.go │ ├── log │ │ └── logger.go │ ├── logger.go │ ├── metrics.go │ ├── observer.go │ ├── process.go │ ├── propagation.go │ ├── reference.go │ ├── reporter.go │ ├── reporter_options.go │ ├── rpcmetrics │ │ ├── README.md │ │ ├── doc.go │ │ ├── endpoints.go │ │ ├── metrics.go │ │ ├── normalizer.go │ │ └── observer.go │ ├── sampler.go │ ├── sampler_options.go │ ├── span.go │ ├── thrift-gen │ │ ├── agent │ │ │ ├── agent.go │ │ │ ├── constants.go │ │ │ └── ttypes.go │ │ ├── baggage │ │ │ ├── baggagerestrictionmanager.go │ │ │ ├── constants.go │ │ │ └── ttypes.go │ │ ├── jaeger │ │ │ ├── agent.go │ │ │ ├── constants.go │ │ │ └── ttypes.go │ │ ├── sampling │ │ │ ├── constants.go │ │ │ ├── samplingmanager.go │ │ │ └── ttypes.go │ │ └── zipkincore │ │ │ ├── constants.go │ │ │ ├── ttypes.go │ │ │ └── zipkincollector.go │ ├── thrift │ │ ├── .nocover │ │ ├── README.md │ │ ├── application_exception.go │ │ ├── binary_protocol.go │ │ ├── compact_protocol.go │ │ ├── exception.go │ │ ├── memory_buffer.go │ │ ├── messagetype.go │ │ ├── numeric.go │ │ ├── processor.go │ │ ├── protocol.go │ │ ├── protocol_exception.go │ │ ├── protocol_factory.go │ │ ├── rich_transport.go │ │ ├── serializer.go │ │ ├── simple_json_protocol.go │ │ ├── transport.go │ │ ├── transport_exception.go │ │ ├── transport_factory.go │ │ └── type.go │ ├── tracer.go │ ├── tracer_options.go │ ├── transport.go │ ├── transport_udp.go │ ├── utils │ │ ├── http_json.go │ │ ├── localip.go │ │ ├── rand.go │ │ ├── rate_limiter.go │ │ ├── udp_client.go │ │ └── utils.go │ ├── zipkin.go │ └── zipkin_thrift_span.go │ └── jaeger-lib │ ├── LICENSE │ └── metrics │ ├── counter.go │ ├── factory.go │ ├── gauge.go │ ├── local.go │ ├── metrics.go │ ├── stopwatch.go │ └── timer.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── ssh │ │ └── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go111.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_not18.go │ │ ├── go18.go │ │ ├── go19.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go111.go │ │ ├── not_go16.go │ │ ├── not_go17.go │ │ ├── not_go18.go │ │ ├── not_go19.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ └── writesched_random.go │ ├── idna │ │ ├── idna.go │ │ ├── punycode.go │ │ ├── tables.go │ │ ├── trie.go │ │ └── trieval.go │ ├── internal │ │ └── timeseries │ │ │ └── timeseries.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ ├── trace.go │ │ ├── trace_go16.go │ │ └── trace_go17.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── openbsd_pledge.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── timestruct.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go │ └── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── collate │ ├── build │ │ ├── builder.go │ │ ├── colelem.go │ │ ├── contract.go │ │ ├── order.go │ │ ├── table.go │ │ └── trie.go │ ├── collate.go │ ├── index.go │ ├── maketables.go │ ├── option.go │ ├── sort.go │ └── tables.go │ ├── internal │ ├── colltab │ │ ├── collelem.go │ │ ├── colltab.go │ │ ├── contract.go │ │ ├── iter.go │ │ ├── numeric.go │ │ ├── table.go │ │ ├── trie.go │ │ └── weighter.go │ ├── gen │ │ ├── code.go │ │ └── gen.go │ ├── tag │ │ └── tag.go │ ├── triegen │ │ ├── compact.go │ │ ├── print.go │ │ └── triegen.go │ └── ucd │ │ └── ucd.go │ ├── language │ ├── Makefile │ ├── common.go │ ├── coverage.go │ ├── doc.go │ ├── gen.go │ ├── gen_common.go │ ├── gen_index.go │ ├── go1_1.go │ ├── go1_2.go │ ├── index.go │ ├── language.go │ ├── lookup.go │ ├── match.go │ ├── parse.go │ ├── tables.go │ └── tags.go │ ├── secure │ └── bidirule │ │ ├── bidirule.go │ │ ├── bidirule10.0.0.go │ │ └── bidirule9.0.0.go │ ├── transform │ └── transform.go │ └── unicode │ ├── bidi │ ├── bidi.go │ ├── bracket.go │ ├── core.go │ ├── gen.go │ ├── gen_ranges.go │ ├── gen_trieval.go │ ├── prop.go │ ├── tables10.0.0.go │ ├── tables9.0.0.go │ └── trieval.go │ ├── cldr │ ├── base.go │ ├── cldr.go │ ├── collate.go │ ├── decode.go │ ├── makexml.go │ ├── resolve.go │ ├── slice.go │ └── xml.go │ ├── norm │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── maketables.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables10.0.0.go │ ├── tables9.0.0.go │ ├── transform.go │ ├── trie.go │ └── triegen.go │ └── rangetable │ ├── gen.go │ ├── merge.go │ ├── rangetable.go │ ├── tables10.0.0.go │ └── tables9.0.0.go ├── google.golang.org ├── genproto │ ├── LICENSE │ └── googleapis │ │ └── rpc │ │ └── status │ │ └── status.pb.go └── grpc │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── backoff.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ └── roundrobin │ │ └── roundrobin.go │ ├── balancer_conn_wrappers.go │ ├── balancer_v1_wrapper.go │ ├── call.go │ ├── clientconn.go │ ├── codec.go │ ├── codegen.sh │ ├── codes │ ├── code_string.go │ └── codes.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── credentials.go │ ├── credentials_util_go17.go │ ├── credentials_util_go18.go │ └── credentials_util_pre_go17.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ └── proto │ │ └── proto.go │ ├── envconfig.go │ ├── go16.go │ ├── go17.go │ ├── grpclog │ ├── grpclog.go │ ├── logger.go │ └── loggerv2.go │ ├── health │ └── grpc_health_v1 │ │ └── health.pb.go │ ├── interceptor.go │ ├── internal │ ├── backoff │ │ └── backoff.go │ ├── channelz │ │ ├── funcs.go │ │ └── types.go │ ├── grpcrand │ │ └── grpcrand.go │ └── internal.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ └── metadata.go │ ├── naming │ ├── dns_resolver.go │ ├── go17.go │ ├── go18.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── pickfirst.go │ ├── proxy.go │ ├── resolver │ ├── dns │ │ ├── dns_resolver.go │ │ ├── go17.go │ │ └── go18.go │ ├── passthrough │ │ └── passthrough.go │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── stats │ ├── handlers.go │ └── stats.go │ ├── status │ ├── go16.go │ ├── go17.go │ └── status.go │ ├── stickiness_linkedmap.go │ ├── stream.go │ ├── tap │ └── tap.go │ ├── trace.go │ ├── transport │ ├── bdp_estimator.go │ ├── controlbuf.go │ ├── flowcontrol.go │ ├── go16.go │ ├── go17.go │ ├── handler_server.go │ ├── http2_client.go │ ├── http2_server.go │ ├── http_util.go │ ├── log.go │ └── transport.go │ ├── version.go │ └── vet.sh └── gopkg.in ├── go-playground └── validator.v9 │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── baked_in.go │ ├── cache.go │ ├── doc.go │ ├── errors.go │ ├── field_level.go │ ├── logo.png │ ├── regexes.go │ ├── struct_level.go │ ├── translations.go │ ├── util.go │ ├── validator.go │ └── validator_instance.go └── yaml.v2 ├── .travis.yml ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── README.md ├── apic.go ├── decode.go ├── emitterc.go ├── encode.go ├── go.mod ├── parserc.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/README.md -------------------------------------------------------------------------------- /cpp-lib/.ccls-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cpp-lib/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/.clang-format -------------------------------------------------------------------------------- /cpp-lib/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/.dockerignore -------------------------------------------------------------------------------- /cpp-lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/.gitignore -------------------------------------------------------------------------------- /cpp-lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/CMakeLists.txt -------------------------------------------------------------------------------- /cpp-lib/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/Dockerfile -------------------------------------------------------------------------------- /cpp-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/Makefile -------------------------------------------------------------------------------- /cpp-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/README.md -------------------------------------------------------------------------------- /cpp-lib/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/conanfile.py -------------------------------------------------------------------------------- /cpp-lib/conanprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/conanprofile -------------------------------------------------------------------------------- /cpp-lib/include/pitaya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/binding_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/binding_storage.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/c_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/c_wrapper.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/cluster.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/constants.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/etcd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/etcd_config.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/grpc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/grpc_config.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/nats_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/nats_client.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/nats_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/nats_config.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/bind.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/bind.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/bind.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/bind.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/bind.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/bind.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/bind.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/bind.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/doc.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/doc.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/doc.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/doc.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/doc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/doc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/doc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/doc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/doc_mock.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/doc_mock.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/docmsg.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/docmsg.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/docmsg.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/docmsg.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/docmsg.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/docmsg.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/docmsg.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/docmsg.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/error.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/error.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/error.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/error.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/error.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/error.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/error.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/error.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/kick.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/kick.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/kick.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/kick.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/kick.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/kick.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/kick.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/kick.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/msg.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/msg.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/msg.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/msg.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/msg.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/msg.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/msg.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/msg.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/msg_mock.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/msg_mock.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/pitaya.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/pitaya.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/pitaya.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/pitaya.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/pitaya.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/pitaya.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/pitaya.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/pitaya.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/push.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/push.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/push.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/push.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/push.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/push.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/push.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/push.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/request.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/request.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/request.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/request.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/request.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/request.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/request.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/request.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/response.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/response.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/response.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/response.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/response.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/response.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/session.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/session.grpc.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/session.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/session.grpc.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/session.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/session.pb.cc -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/protos/session.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/protos/session.pb.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/rpc_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/rpc_client.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/rpc_server.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/service_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/service_discovery.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/utils.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/utils/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/utils/semaphore.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/utils/sync_deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/utils/sync_deque.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/utils/sync_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/utils/sync_map.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/utils/sync_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/utils/sync_vector.h -------------------------------------------------------------------------------- /cpp-lib/include/pitaya/utils/ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/include/pitaya/utils/ticker.h -------------------------------------------------------------------------------- /cpp-lib/run-tests-with-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/run-tests-with-coverage.sh -------------------------------------------------------------------------------- /cpp-lib/src/pitaya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/c_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/c_wrapper.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/cluster.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/etcd_binding_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/etcd_binding_storage.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/etcd_binding_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/etcd_binding_storage.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/etcd_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/etcd_client.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/etcd_client_v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/etcd_client_v3.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/etcd_client_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/etcd_client_v3.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/etcdv3_service_discovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/etcdv3_service_discovery.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/etcdv3_service_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/etcdv3_service_discovery.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/grpc/rpc_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/grpc/rpc_client.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/grpc/rpc_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/grpc/rpc_client.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/grpc/rpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/grpc/rpc_server.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/grpc/rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/grpc/rpc_server.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/nats/rpc_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/nats/rpc_client.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/nats/rpc_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/nats/rpc_client.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/nats/rpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/nats/rpc_server.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/nats/rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/nats/rpc_server.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/nats_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/nats_client.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/utils.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/utils/grpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/utils/grpc.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/utils/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/utils/grpc.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/utils/string_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/utils/string_utils.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/utils/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/utils/string_utils.h -------------------------------------------------------------------------------- /cpp-lib/src/pitaya/utils/ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya/utils/ticker.cpp -------------------------------------------------------------------------------- /cpp-lib/src/pitaya_cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/src/pitaya_cluster.cpp -------------------------------------------------------------------------------- /cpp-lib/test/c_wrapper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/c_wrapper_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/cluster_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/cluster_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/etcdv3_service_discovery_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/etcdv3_service_discovery_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/grpc_client_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/grpc_client_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/grpc_server_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/grpc_server_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/main_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/main_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/mock_binding_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/mock_binding_storage.h -------------------------------------------------------------------------------- /cpp-lib/test/mock_etcd_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/mock_etcd_client.h -------------------------------------------------------------------------------- /cpp-lib/test/mock_nats_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/mock_nats_client.h -------------------------------------------------------------------------------- /cpp-lib/test/mock_rpc_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/mock_rpc_client.h -------------------------------------------------------------------------------- /cpp-lib/test/mock_rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/mock_rpc_server.h -------------------------------------------------------------------------------- /cpp-lib/test/mock_service_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/mock_service_discovery.h -------------------------------------------------------------------------------- /cpp-lib/test/nats_rpc_client_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/nats_rpc_client_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/nats_rpc_server_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/nats_rpc_server_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/test_common.h -------------------------------------------------------------------------------- /cpp-lib/test/ticker_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/ticker_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test/utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test/utils_test.cpp -------------------------------------------------------------------------------- /cpp-lib/test_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test_package/CMakeLists.txt -------------------------------------------------------------------------------- /cpp-lib/test_package/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test_package/conanfile.py -------------------------------------------------------------------------------- /cpp-lib/test_package/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/cpp-lib/test_package/example.cpp -------------------------------------------------------------------------------- /cpp-lib/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.10 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/docs/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /docs/UBUNTU_22_04_COMPATIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/docs/UBUNTU_22_04_COMPATIBILITY.md -------------------------------------------------------------------------------- /go-server/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/go-server/Gopkg.lock -------------------------------------------------------------------------------- /go-server/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/go-server/Gopkg.toml -------------------------------------------------------------------------------- /go-server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/go-server/go.mod -------------------------------------------------------------------------------- /go-server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/go-server/go.sum -------------------------------------------------------------------------------- /go-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/go-server/main.go -------------------------------------------------------------------------------- /go-server/protos/cluster.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/go-server/protos/cluster.pb.go -------------------------------------------------------------------------------- /go-server/protos/cluster.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/go-server/protos/cluster.proto -------------------------------------------------------------------------------- /go-server/services/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/go-server/services/connector.go -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/package.sh -------------------------------------------------------------------------------- /pitaya-sharp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/.editorconfig -------------------------------------------------------------------------------- /pitaya-sharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/.gitignore -------------------------------------------------------------------------------- /pitaya-sharp/ExampleEFCore/ExampleEFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/ExampleEFCore/ExampleEFCore.csproj -------------------------------------------------------------------------------- /pitaya-sharp/ExampleEFCore/Protos/Answer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/ExampleEFCore/Protos/Answer.proto -------------------------------------------------------------------------------- /pitaya-sharp/ExampleEFCore/Protos/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/ExampleEFCore/Protos/user.proto -------------------------------------------------------------------------------- /pitaya-sharp/ExampleEFCore/src/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/ExampleEFCore/src/App.cs -------------------------------------------------------------------------------- /pitaya-sharp/ExampleEFCore/src/Models/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/ExampleEFCore/src/Models/Models.cs -------------------------------------------------------------------------------- /pitaya-sharp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/Makefile -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya-csproj/NPitaya.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya-csproj/NPitaya.csproj -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya.Tests/Metric/Prometheus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya.Tests/Metric/Prometheus.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya.Tests/NPitaya.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya.Tests/NPitaya.Tests.csproj -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya.Tests/Tests/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya.Tests/Tests/Models.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Constants.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Constants.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Constants/Routes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Constants/Routes.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Metrics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Metrics.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Models.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Models/IRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Models/IRemote.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Models/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Models/Logger.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Models/Remote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Models/Remote.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/NativeInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/NativeInterop.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/PitayaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/PitayaException.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Plugins.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Serializer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Serializer.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Utils.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Utils/Utils.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/Utils/Utils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/Utils/Utils.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Bind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Bind.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Bind.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Bind.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Doc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Doc.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Doc.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Doc.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Docmsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Docmsg.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Docmsg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Docmsg.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Error.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Error.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Error.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Kick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Kick.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Kick.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Kick.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Msg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Msg.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Msg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Msg.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Pitaya.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Pitaya.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Pitaya.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Pitaya.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Push.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Push.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Push.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Push.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Request.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Request.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Request.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Response.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Session.cs -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/gen/Session.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/gen/Session.cs.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/Runtime/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/Runtime/lib.meta -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/package.json -------------------------------------------------------------------------------- /pitaya-sharp/NPitaya/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/NPitaya/package.json.meta -------------------------------------------------------------------------------- /pitaya-sharp/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/docker-compose.yml -------------------------------------------------------------------------------- /pitaya-sharp/exampleapp/Handlers/TestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/exampleapp/Handlers/TestHandler.cs -------------------------------------------------------------------------------- /pitaya-sharp/exampleapp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/exampleapp/Program.cs -------------------------------------------------------------------------------- /pitaya-sharp/exampleapp/exampleapp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/exampleapp/exampleapp.csproj -------------------------------------------------------------------------------- /pitaya-sharp/exampleapp/gen/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/exampleapp/gen/Cluster.cs -------------------------------------------------------------------------------- /pitaya-sharp/exampleapp/remotes/TestRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/exampleapp/remotes/TestRemote.cs -------------------------------------------------------------------------------- /pitaya-sharp/netfx.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/netfx.props -------------------------------------------------------------------------------- /pitaya-sharp/pitaya-sharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/pitaya-sharp/pitaya-sharp.sln -------------------------------------------------------------------------------- /precompiled/libpitaya_cpp.bundle: -------------------------------------------------------------------------------- 1 | ../pitaya-sharp/NPitaya/Runtime/Plugins/libpitaya_cpp.bundle -------------------------------------------------------------------------------- /precompiled/libpitaya_cpp.bundle.meta: -------------------------------------------------------------------------------- 1 | ../pitaya-sharp/NPitaya/Runtime/Plugins/libpitaya_cpp.bundle.meta -------------------------------------------------------------------------------- /precompiled/libpitaya_cpp.dll: -------------------------------------------------------------------------------- 1 | ../pitaya-sharp/NPitaya/Runtime/Plugins/libpitaya_cpp.dll -------------------------------------------------------------------------------- /precompiled/libpitaya_cpp.dll.meta: -------------------------------------------------------------------------------- 1 | ../pitaya-sharp/NPitaya/Runtime/Plugins/libpitaya_cpp.dll.meta -------------------------------------------------------------------------------- /precompiled/libpitaya_cpp.dylib: -------------------------------------------------------------------------------- 1 | ../pitaya-sharp/NPitaya/Runtime/Plugins/libpitaya_cpp.dylib -------------------------------------------------------------------------------- /precompiled/libpitaya_cpp.dylib.meta: -------------------------------------------------------------------------------- 1 | ../pitaya-sharp/NPitaya/Runtime/Plugins/libpitaya_cpp.dylib.meta -------------------------------------------------------------------------------- /precompiled/libpitaya_cpp.so: -------------------------------------------------------------------------------- 1 | ../pitaya-sharp/NPitaya/Runtime/Plugins/libpitaya_cpp.so -------------------------------------------------------------------------------- /precompiled/libpitaya_cpp.so.meta: -------------------------------------------------------------------------------- 1 | ../pitaya-sharp/NPitaya/Runtime/Plugins/libpitaya_cpp.so.meta -------------------------------------------------------------------------------- /python-example/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-example/Pipfile -------------------------------------------------------------------------------- /python-example/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-example/Pipfile.lock -------------------------------------------------------------------------------- /python-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-example/README.md -------------------------------------------------------------------------------- /python-example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-example/example.py -------------------------------------------------------------------------------- /python-example/example_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-example/example_remote.py -------------------------------------------------------------------------------- /python-example/gen/cluster_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-example/gen/cluster_pb2.py -------------------------------------------------------------------------------- /python-example/libpitaya_cpp.dylib: -------------------------------------------------------------------------------- 1 | ../precompiled/libpitaya_cpp.dylib -------------------------------------------------------------------------------- /python-example/libpitaya_cpp.so: -------------------------------------------------------------------------------- 1 | ../precompiled/libpitaya_cpp.so -------------------------------------------------------------------------------- /python-example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-example/requirements.txt -------------------------------------------------------------------------------- /python-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/README.md -------------------------------------------------------------------------------- /python-lib/pitayaserver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/__init__.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/c_interop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/c_interop.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/__init__.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/bind_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/bind_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/cluster_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/cluster_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/doc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/doc_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/docmsg_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/docmsg_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/error_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/error_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/kick_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/kick_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/msg_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/msg_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/pitaya_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/pitaya_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/push_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/push_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/request_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/request_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/response_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/response_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/gen/session_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/gen/session_pb2.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/pitayaserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/pitayaserver.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/remote.py -------------------------------------------------------------------------------- /python-lib/pitayaserver/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/pitayaserver/route.py -------------------------------------------------------------------------------- /python-lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/python-lib/setup.py -------------------------------------------------------------------------------- /unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/.gitignore -------------------------------------------------------------------------------- /unity/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Editor.meta -------------------------------------------------------------------------------- /unity/Assets/Gen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Gen.meta -------------------------------------------------------------------------------- /unity/Assets/Gen/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Gen/Cluster.cs -------------------------------------------------------------------------------- /unity/Assets/Gen/Cluster.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Gen/Cluster.cs.meta -------------------------------------------------------------------------------- /unity/Assets/LibPitayaExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/LibPitayaExample.cs -------------------------------------------------------------------------------- /unity/Assets/LibPitayaExample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/LibPitayaExample.cs.meta -------------------------------------------------------------------------------- /unity/Assets/LibPitayaExampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/LibPitayaExampleScene.unity -------------------------------------------------------------------------------- /unity/Assets/LibPitayaExampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/LibPitayaExampleScene.unity.meta -------------------------------------------------------------------------------- /unity/Assets/MobileDependencyResolver.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/MobileDependencyResolver.meta -------------------------------------------------------------------------------- /unity/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Plugins.meta -------------------------------------------------------------------------------- /unity/Assets/Plugins/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Plugins/Editor.meta -------------------------------------------------------------------------------- /unity/Assets/Remotes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Remotes.meta -------------------------------------------------------------------------------- /unity/Assets/Remotes/TestRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Remotes/TestRemote.cs -------------------------------------------------------------------------------- /unity/Assets/Remotes/TestRemote.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Remotes/TestRemote.cs.meta -------------------------------------------------------------------------------- /unity/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Resources.meta -------------------------------------------------------------------------------- /unity/Assets/Resources/BillingMode.json: -------------------------------------------------------------------------------- 1 | {"androidStore":"GooglePlay"} -------------------------------------------------------------------------------- /unity/Assets/Resources/BillingMode.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Assets/Resources/BillingMode.json.meta -------------------------------------------------------------------------------- /unity/MY_LOG_FILE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/MY_LOG_FILE.txt -------------------------------------------------------------------------------- /unity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Makefile -------------------------------------------------------------------------------- /unity/NPitaya.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/NPitaya.nuspec -------------------------------------------------------------------------------- /unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Packages/manifest.json -------------------------------------------------------------------------------- /unity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/Packages/packages-lock.json -------------------------------------------------------------------------------- /unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/GvhProjectSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/GvhProjectSettings.xml -------------------------------------------------------------------------------- /unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /unity/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unity/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /unity/UserSettings/Layouts/default-2021.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/UserSettings/Layouts/default-2021.dwlt -------------------------------------------------------------------------------- /unity/UserSettings/Search.settings: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /unity/mono_crash.mem.19927.1.blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/unity/mono_crash.mem.19927.1.blob -------------------------------------------------------------------------------- /update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/update-version.sh -------------------------------------------------------------------------------- /update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/update_version.py -------------------------------------------------------------------------------- /vendor/github.com/DataDog/datadog-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/DataDog/datadog-go/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/codahale/hdrhistogram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/codahale/hdrhistogram/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/codahale/hdrhistogram/hdr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/codahale/hdrhistogram/hdr.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/Documentation/README.md: -------------------------------------------------------------------------------- 1 | docs.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/README.md -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/auth.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/client.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/config.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/kv.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/lease.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/lease.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/logger.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/op.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/retry.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/sort.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/txn.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/clientv3/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/clientv3/watch.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/etcd: -------------------------------------------------------------------------------- 1 | ../ -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/etcdctl: -------------------------------------------------------------------------------- 1 | ../etcdctl -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/functional: -------------------------------------------------------------------------------- 1 | ../functional -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/cmd/tools: -------------------------------------------------------------------------------- 1 | ../tools -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/pkg/types/doc.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/types/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/pkg/types/id.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/types/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/pkg/types/set.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/types/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/pkg/types/slice.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/etcd/pkg/types/urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/coreos/etcd/pkg/types/urls.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/fsnotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/inotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/kqueue.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/fsnotify/fsnotify/windows.go -------------------------------------------------------------------------------- /vendor/github.com/go-playground/locales/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/go-playground/locales/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-playground/locales/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/go-playground/locales/logo.png -------------------------------------------------------------------------------- /vendor/github.com/go-playground/locales/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/go-playground/locales/rules.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/gogoproto/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/client.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/conn.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/conn_read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/conn_read.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/json.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/mask.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/mask_safe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/mask_safe.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/prepared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/prepared.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/server.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/gorilla/websocket/util.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/magiconair/properties/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/magiconair/properties/doc.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/magiconair/properties/lex.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/magiconair/properties/load.go -------------------------------------------------------------------------------- /vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore: -------------------------------------------------------------------------------- 1 | cover.dat 2 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/OWNERS -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/README.md -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/TODO.md -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/context.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/enc.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/nats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/nats.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/netchan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/netchan.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/parser.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/timer.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/go-nats/util/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/go-nats/util/tls.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nuid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/nuid/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/nuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/nuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/nuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nuid/nuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/nats-io/nuid/nuid.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/README.md -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/benchmark.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/example.toml -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/fuzz.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/parser.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/position.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/test.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/token.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pelletier/go-toml/toml.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_model/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/client_model/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/common/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/common/model/fnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/common/model/fnv.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.gitignore: -------------------------------------------------------------------------------- 1 | /fixtures/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/Makefile -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/README.md -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/buddyinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/buddyinfo.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/fs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ipvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/ipvs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/mdstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/mdstat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/net_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/net_dev.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/nfs/nfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/nfs/nfs.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/nfs/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/nfs/parse.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/proc.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc_io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/proc_io.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc_ns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/proc_ns.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/proc_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/proc_stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/stat.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/xfrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/xfrm.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/xfs/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/xfs/parse.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/xfs/xfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/prometheus/procfs/xfs/xfs.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/cacheOnReadFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/cacheOnReadFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/const_bsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/const_bsds.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/const_win_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/const_win_unix.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/copyOnWriteFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/copyOnWriteFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dirmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/mem/dirmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/readonlyfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/readonlyfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/cast/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/viper/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/topfreegames/pitaya/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/topfreegames/pitaya/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/topfreegames/pitaya/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/topfreegames/pitaya/Makefile -------------------------------------------------------------------------------- /vendor/github.com/topfreegames/pitaya/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/topfreegames/pitaya/app.go -------------------------------------------------------------------------------- /vendor/github.com/topfreegames/pitaya/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/topfreegames/pitaya/group.go -------------------------------------------------------------------------------- /vendor/github.com/topfreegames/pitaya/kick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/topfreegames/pitaya/kick.go -------------------------------------------------------------------------------- /vendor/github.com/topfreegames/pitaya/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/topfreegames/pitaya/push.go -------------------------------------------------------------------------------- /vendor/github.com/topfreegames/pitaya/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/topfreegames/pitaya/rpc.go -------------------------------------------------------------------------------- /vendor/github.com/topfreegames/pitaya/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/topfreegames/pitaya/timer.go -------------------------------------------------------------------------------- /vendor/github.com/uber/jaeger-client-go/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/uber/jaeger-client-go/DCO -------------------------------------------------------------------------------- /vendor/github.com/uber/jaeger-client-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/uber/jaeger-client-go/doc.go -------------------------------------------------------------------------------- /vendor/github.com/uber/jaeger-client-go/thrift/.nocover: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/uber/jaeger-lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/github.com/uber/jaeger-lib/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/collate/build/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/maketables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/collate/maketables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/internal/gen/code.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/internal/gen/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/ucd/ucd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/internal/ucd/ucd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/gen_index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/cldr/base.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/cldr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/cldr/cldr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/cldr/slice.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/cldr/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/envconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/envconfig.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/naming/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/naming/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/naming/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/naming/go18.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/naming/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/naming/naming.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/status/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/status/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/status/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/status/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/status/status.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/transport/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/transport/log.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfreegames/libpitaya-cluster/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go --------------------------------------------------------------------------------