From e6ae8cf420b54f71cd5306befa4a48df35de4c63 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 13 Jul 2013 06:18:16 +0000 Subject: (svn r25593) -Cleanup: remove a few stale #defines --- src/network/core/tcp_content.cpp | 6 ------ src/network/core/tcp_game.cpp | 6 ------ src/network/core/udp.cpp | 6 ------ 3 files changed, 18 deletions(-) (limited to 'src/network/core') diff --git a/src/network/core/tcp_content.cpp b/src/network/core/tcp_content.cpp index 164f8de3c..ecef92a4f 100644 --- a/src/network/core/tcp_content.cpp +++ b/src/network/core/tcp_content.cpp @@ -152,12 +152,6 @@ void NetworkContentSocketHandler::Close() this->sock = INVALID_SOCKET; } -/** - * Defines a simple (switch) case for each network packet - * @param type the packet type to create the case for - */ -#define CONTENT_COMMAND(type) case type: return this->NetworkPacketReceive_ ## type ## _command(p); break; - /** * Handle the given packet, i.e. pass it to the right * parser receive command. diff --git a/src/network/core/tcp_game.cpp b/src/network/core/tcp_game.cpp index 64b7ba97a..711d6a2b7 100644 --- a/src/network/core/tcp_game.cpp +++ b/src/network/core/tcp_game.cpp @@ -56,12 +56,6 @@ NetworkRecvStatus NetworkGameSocketHandler::CloseConnection(bool error) } -/** - * Defines a simple (switch) case for each network packet - * @param type the packet type to create the case for - */ -#define GAME_COMMAND(type) case type: return this->NetworkPacketReceive_ ## type ## _command(p); break; - /** * Handle the given packet, i.e. pass it to the right parser receive command. * @param p the packet to handle diff --git a/src/network/core/udp.cpp b/src/network/core/udp.cpp index 4c74af3f6..ff6ecc6d1 100644 --- a/src/network/core/udp.cpp +++ b/src/network/core/udp.cpp @@ -282,12 +282,6 @@ void NetworkUDPSocketHandler::ReceiveNetworkGameInfo(Packet *p, NetworkGameInfo } } -/** - * Defines a simple (switch) case for each network packet - * @param type the packet type to create the case for - */ -#define UDP_COMMAND(type) case type: this->NetworkPacketReceive_ ## type ## _command(p, client_addr); break; - /** * Handle an incoming packets by sending it to the correct function. * @param p the received packet -- cgit v1.2.3-54-g00ecf