gloox
0.9.9.12
|
#include <statisticshandler.h>
Public Attributes | |
int | totalBytesSent |
int | totalBytesReceived |
int | compressedBytesSent |
int | compressedBytesReceived |
int | uncompressedBytesSent |
int | uncompressedBytesReceived |
int | totalStanzasSent |
int | totalStanzasReceived |
int | iqStanzasSent |
int | iqStanzasReceived |
int | messageStanzasSent |
int | messageStanzasReceived |
int | s10nStanzasSent |
int | s10nStanzasReceived |
int | presenceStanzasSent |
int | presenceStanzasReceived |
bool | encryption |
bool | compression |
A strcuture describing the current connection statistics.
Definition at line 25 of file statisticshandler.h.
int compressedBytesReceived |
Total number of bytes received over the wire before decompression was applied.
Definition at line 35 of file statisticshandler.h.
int compressedBytesSent |
Total number of bytes sent over the wire after compression was applied.
Definition at line 33 of file statisticshandler.h.
bool compression |
Whether or not the stream (to the server) gets compressed.
Definition at line 52 of file statisticshandler.h.
bool encryption |
Whether or not the connection (to the server) is encrypted.
Definition at line 51 of file statisticshandler.h.
int iqStanzasReceived |
The total number of IQ Stanzas received.
Definition at line 44 of file statisticshandler.h.
int iqStanzasSent |
The total number of IQ Stanzas sent.
Definition at line 43 of file statisticshandler.h.
int messageStanzasReceived |
The total number of Message Stanzas received.
Definition at line 46 of file statisticshandler.h.
int messageStanzasSent |
The total number of Message Stanzas sent.
Definition at line 45 of file statisticshandler.h.
int presenceStanzasReceived |
The total number of Presence Stanzas received.
Definition at line 50 of file statisticshandler.h.
int presenceStanzasSent |
The total number of Presence Stanzas sent.
Definition at line 49 of file statisticshandler.h.
int s10nStanzasReceived |
The total number of Subscription Stanzas received.
Definition at line 48 of file statisticshandler.h.
int s10nStanzasSent |
The total number of Subscription Stanzas sent.
Definition at line 47 of file statisticshandler.h.
int totalBytesReceived |
The total number of bytes received over the wire. This does not include the TLS handshake nor any TLS-related overhead, but it does include anything sent before compression was switched on.
Definition at line 30 of file statisticshandler.h.
int totalBytesSent |
The total number of bytes sent over the wire. This does not include the TLS handshake nor any TLS-related overhead, but it does include anything sent before compression was switched on.
Definition at line 27 of file statisticshandler.h.
int totalStanzasReceived |
The total number of Stanzas received.
Definition at line 42 of file statisticshandler.h.
int totalStanzasSent |
The total number of Stanzas sent.
Definition at line 41 of file statisticshandler.h.
int uncompressedBytesReceived |
Total number of bytes received over the wire after decompression was applied.
Definition at line 39 of file statisticshandler.h.
int uncompressedBytesSent |
Total number of bytes sent over the wire before compression was applied.
Definition at line 37 of file statisticshandler.h.