Add Asset serialization for Ctrl+G and related net interfaces

This commit is contained in:
puvvadar
2021-05-06 16:18:13 -07:00
parent 2f4120cdfb
commit aa51233536
8 changed files with 132 additions and 13 deletions
@@ -116,8 +116,8 @@ namespace AzNetworking
int32_t TcpSocket::Receive(uint8_t* outData, uint32_t size) const
{
AZ_Assert(size > 0, "Invalid data size for send");
AZ_Assert(outData != nullptr, "NULL data pointer passed to send");
AZ_Assert(size > 0, "Invalid data size for receive");
AZ_Assert(outData != nullptr, "NULL data pointer passed to receive");
if (!IsOpen())
{
return SocketOpResultErrorNotOpen;