├── .gitignore ├── LICENSE ├── README.md └── SocketCluster ├── Config └── FilterPlugin.ini ├── Resources └── Icon128.png ├── SocketCluster.uplugin └── Source ├── SCAuthEngine ├── Private │ ├── SCAuthEngine.cpp │ ├── SCAuthEngineModule.cpp │ └── SCDefaultAuthEngine.cpp ├── Public │ ├── SCAuthEngine.h │ ├── SCAuthEngineModule.h │ └── SCDefaultAuthEngine.h └── SCAuthEngine.Build.cs ├── SCClient ├── Private │ ├── SCChannel.cpp │ ├── SCClient.cpp │ ├── SCClientModule.cpp │ ├── SCClientSocket.cpp │ ├── SCEventObject.cpp │ ├── SCResponse.cpp │ └── SCTransport.cpp ├── Public │ ├── SCChannel.h │ ├── SCClient.h │ ├── SCClientModule.h │ ├── SCClientSocket.h │ ├── SCEventObject.h │ ├── SCResponse.h │ └── SCTransport.h └── SCClient.Build.cs ├── SCCodecEngine ├── Private │ ├── SCCodecEngine.cpp │ ├── SCCodecEngineModule.cpp │ └── SC_Formatter.cpp ├── Public │ ├── SCCodecEngine.h │ ├── SCCodecEngineModule.h │ └── SC_Formatter.h └── SCCodecEngine.Build.cs ├── SCErrors ├── Private │ ├── SCErrors.cpp │ └── SCErrorsModule.cpp ├── Public │ ├── SCErrors.h │ └── SCErrorsModule.h └── SCErrors.Build.cs ├── SCSocket ├── Private │ ├── SCSocket.cpp │ └── SCSocketModule.cpp ├── Public │ ├── SCSocket.h │ └── SCSocketModule.h └── SCSocket.Build.cs └── ThirdParty └── SCJson ├── LICENSE ├── Private ├── SCJsonConvert.cpp ├── SCJsonModule.cpp ├── SCJsonObject.cpp └── SCJsonValue.cpp ├── Public ├── SCJsonConvert.h ├── SCJsonModule.h ├── SCJsonObject.h └── SCJsonValue.h └── SCJson.Build.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/README.md -------------------------------------------------------------------------------- /SocketCluster/Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /SocketCluster/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Resources/Icon128.png -------------------------------------------------------------------------------- /SocketCluster/SocketCluster.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/SocketCluster.uplugin -------------------------------------------------------------------------------- /SocketCluster/Source/SCAuthEngine/Private/SCAuthEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCAuthEngine/Private/SCAuthEngine.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCAuthEngine/Private/SCAuthEngineModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCAuthEngine/Private/SCAuthEngineModule.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCAuthEngine/Private/SCDefaultAuthEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCAuthEngine/Private/SCDefaultAuthEngine.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCAuthEngine/Public/SCAuthEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCAuthEngine/Public/SCAuthEngine.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCAuthEngine/Public/SCAuthEngineModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCAuthEngine/Public/SCAuthEngineModule.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCAuthEngine/Public/SCDefaultAuthEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCAuthEngine/Public/SCDefaultAuthEngine.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCAuthEngine/SCAuthEngine.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCAuthEngine/SCAuthEngine.Build.cs -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Private/SCChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Private/SCChannel.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Private/SCClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Private/SCClient.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Private/SCClientModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Private/SCClientModule.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Private/SCClientSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Private/SCClientSocket.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Private/SCEventObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Private/SCEventObject.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Private/SCResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Private/SCResponse.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Private/SCTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Private/SCTransport.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Public/SCChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Public/SCChannel.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Public/SCClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Public/SCClient.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Public/SCClientModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Public/SCClientModule.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Public/SCClientSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Public/SCClientSocket.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Public/SCEventObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Public/SCEventObject.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Public/SCResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Public/SCResponse.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/Public/SCTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/Public/SCTransport.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCClient/SCClient.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCClient/SCClient.Build.cs -------------------------------------------------------------------------------- /SocketCluster/Source/SCCodecEngine/Private/SCCodecEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCCodecEngine/Private/SCCodecEngine.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCCodecEngine/Private/SCCodecEngineModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCCodecEngine/Private/SCCodecEngineModule.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCCodecEngine/Private/SC_Formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCCodecEngine/Private/SC_Formatter.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCCodecEngine/Public/SCCodecEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCCodecEngine/Public/SCCodecEngine.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCCodecEngine/Public/SCCodecEngineModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCCodecEngine/Public/SCCodecEngineModule.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCCodecEngine/Public/SC_Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCCodecEngine/Public/SC_Formatter.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCCodecEngine/SCCodecEngine.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCCodecEngine/SCCodecEngine.Build.cs -------------------------------------------------------------------------------- /SocketCluster/Source/SCErrors/Private/SCErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCErrors/Private/SCErrors.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCErrors/Private/SCErrorsModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCErrors/Private/SCErrorsModule.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCErrors/Public/SCErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCErrors/Public/SCErrors.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCErrors/Public/SCErrorsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCErrors/Public/SCErrorsModule.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCErrors/SCErrors.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCErrors/SCErrors.Build.cs -------------------------------------------------------------------------------- /SocketCluster/Source/SCSocket/Private/SCSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCSocket/Private/SCSocket.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCSocket/Private/SCSocketModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCSocket/Private/SCSocketModule.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/SCSocket/Public/SCSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCSocket/Public/SCSocket.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCSocket/Public/SCSocketModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCSocket/Public/SCSocketModule.h -------------------------------------------------------------------------------- /SocketCluster/Source/SCSocket/SCSocket.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/SCSocket/SCSocket.Build.cs -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/LICENSE -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/Private/SCJsonConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/Private/SCJsonConvert.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/Private/SCJsonModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/Private/SCJsonModule.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/Private/SCJsonObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/Private/SCJsonObject.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/Private/SCJsonValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/Private/SCJsonValue.cpp -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/Public/SCJsonConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/Public/SCJsonConvert.h -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/Public/SCJsonModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/Public/SCJsonModule.h -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/Public/SCJsonObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/Public/SCJsonObject.h -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/Public/SCJsonValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/Public/SCJsonValue.h -------------------------------------------------------------------------------- /SocketCluster/Source/ThirdParty/SCJson/SCJson.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziicreater/socketcluster-client-ue4/HEAD/SocketCluster/Source/ThirdParty/SCJson/SCJson.Build.cs --------------------------------------------------------------------------------