mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* tidy * Automated clang-tidy change: modernize-concat-nested-namespaces * compile test * fix namespace --------- Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
19 lines
233 B
C++
19 lines
233 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#include "iostats.h"
|
|
|
|
#include <cstring>
|
|
|
|
|
|
namespace Pol::Network
|
|
{
|
|
IOStats::IOStats()
|
|
{
|
|
memset( &sent, 0, sizeof sent );
|
|
memset( &received, 0, sizeof received );
|
|
}
|
|
} // namespace Pol::Network
|