From 6546561360597708e61609de4290fb3b1cbe7068 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 30 Dec 2010 18:14:37 +0000 Subject: (svn r21668) -Feature: command logging using the admin interface (dihedral) --- src/network/network_command.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/network/network_command.cpp') diff --git a/src/network/network_command.cpp b/src/network/network_command.cpp index 9af6bfca1..5d39336ad 100644 --- a/src/network/network_command.cpp +++ b/src/network/network_command.cpp @@ -13,6 +13,7 @@ #include "../stdafx.h" #include "../debug.h" +#include "network_admin.h" #include "network_client.h" #include "network_server.h" #include "network.h" @@ -267,6 +268,7 @@ static void DistributeQueue(CommandQueue *queue, const NetworkClientSocket *owne CommandPacket *cp; while (--to_go >= 0 && (cp = queue->Pop(true)) != NULL) { DistributeCommandPacket(*cp, owner); + NetworkAdminCmdLogging(owner, cp); free(cp); } } -- cgit v1.2.3-54-g00ecf