struct SNetChannelStats { SMessageQueueStats m_messageQueue; char m_name[STATS_MAX_NAME_SIZE]; uint32 m_ping; uint32 m_pingSmoothed; float m_bandwidthInbound; float m_bandwidthOutbound; uint32 m_bandwidthShares; uint32 m_desiredPacketRate; float m_currentPacketRate; float m_packetLossRate; uint32 m_maxPacketSize; uint32 m_idealPacketSize; uint32 m_sparePacketSize; bool m_idle; bool m_inUse; };
INetwork.h
float m_bandwidthInbound;
float m_bandwidthOutbound;
uint32 m_bandwidthShares;
float m_currentPacketRate;
uint32 m_desiredPacketRate;
uint32 m_idealPacketSize;
bool m_idle;
bool m_inUse;
uint32 m_maxPacketSize;
SMessageQueueStats m_messageQueue;
char m_name[STATS_MAX_NAME_SIZE];
float m_packetLossRate;
uint32 m_ping;
uint32 m_pingSmoothed;
uint32 m_sparePacketSize;
SNetChannelStats();