Lines Matching defs:ConnectionInfo
33 struct ConnectionInfo { struct
38 bool best_connection; // Is this the best connection we have?
39 bool writable; // Has this connection received a STUN response?
40 bool receiving; // Has this connection received anything?
41 bool timeout; // Has this connection timed out?
42 bool new_connection; // Is this a newly created connection?
43 size_t rtt; // The STUN RTT for this connection.
44 size_t sent_total_bytes; // Total bytes sent on this connection.
45 size_t sent_bytes_second; // Bps over the last measurement interval.
46 size_t sent_discarded_packets; // Number of outgoing packets discarded due to
48 size_t sent_total_packets; // Number of total outgoing packets attempted for
50 size_t sent_ping_requests_total; // Number of STUN ping request sent.
51 size_t sent_ping_requests_before_first_response; // Number of STUN ping
76 typedef std::vector<ConnectionInfo> ConnectionInfos; argument