File diff r23482:de566f8c088d → r23483:3733e6b8ff17
src/network/network_server.h
Show inline comments
 
@@ -9,14 +9,12 @@
 

	
 
/** @file network_server.h Server part of the network protocol. */
 

	
 
#ifndef NETWORK_SERVER_H
 
#define NETWORK_SERVER_H
 

	
 
#ifdef ENABLE_NETWORK
 

	
 
#include "network_internal.h"
 
#include "core/tcp_listen.h"
 
#include "../thread/thread.h"
 

	
 
class ServerNetworkGameSocketHandler;
 
/** Make the code look slightly nicer/simpler. */
 
@@ -135,15 +133,7 @@ void NetworkServerUpdateCompanyPassworde
 
/**
 
 * Iterate over all the sockets.
 
 * @param var The variable to iterate with.
 
 */
 
#define FOR_ALL_CLIENT_SOCKETS(var) FOR_ALL_CLIENT_SOCKETS_FROM(var, 0)
 

	
 
#else /* ENABLE_NETWORK */
 
/* Network function stubs when networking is disabled */
 

	
 
static inline void NetworkServerMonthlyLoop() {}
 
static inline void NetworkServerYearlyLoop() {}
 

	
 
#endif /* ENABLE_NETWORK */
 

	
 
#endif /* NETWORK_SERVER_H */