mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Include cleanup Reworked buildsystem (Linux only) Removed dynamic libs, Linux now again uses static linking (like windows)
21 lines
218 B
C++
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 );
|
|
}
|
|
}
|
|
}
|