polserver/pol-core/pol/network/iostats.cpp
turleypol dbb25bdb62
Include and buildsystem cleanup (#45)
Include cleanup
Reworked buildsystem (Linux only)
Removed dynamic libs, Linux now again uses static linking (like windows)
2018-01-29 21:55:48 +01:00

21 lines
218 B
C++

/** @file
*
* @par History
*/
#include "iostats.h"
#include <cstring>
namespace Pol
{
namespace Network
{
IOStats::IOStats()
{
memset( &sent, 0, sizeof sent );
memset( &received, 0, sizeof received );
}
}
}