This commit is contained in:
Wojtek Figat
2021-03-16 22:31:51 +01:00
parent 3e56cd2c70
commit 1567f8723d
4 changed files with 4 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ bool NetworkBase::IsReadable(NetworkSocket& socket)
return true;
}
bool NetworkBase::IsWriteable(NetworkSocket& socket)
bool NetworkBase::IsWritable(NetworkSocket& socket)
{
return true;
}

View File

@@ -201,7 +201,7 @@ public:
/// </summary>
/// <param name="socket">The socket.</param>
/// <returns>Returns true when data can be written. Otherwise false.</returns>
static bool IsWriteable(NetworkSocket& socket);
static bool IsWritable(NetworkSocket& socket);
/// <summary>
/// Creates a socket group. It allocate memory based on the desired capacity.