(svn r21358) -Codechange: make some network function names conform to coding style

This commit is contained in:
rubidium
2010-11-30 13:38:46 +00:00
parent 9c83a8975f
commit b6c2216749
25 changed files with 141 additions and 141 deletions

View File

@@ -117,11 +117,11 @@ bool NetworkContentSocketHandler::HandlePacket(Packet *p)
/**
* Receive a packet at TCP level
*/
void NetworkContentSocketHandler::Recv_Packets()
void NetworkContentSocketHandler::ReceivePackets()
{
Packet *p;
while ((p = this->Recv_Packet()) != NULL) {
bool cont = HandlePacket(p);
while ((p = this->ReceivePacket()) != NULL) {
bool cont = this->HandlePacket(p);
delete p;
if (!cont) return;
}