web tweaks
parent
356f88f3ba
commit
6ce2664d57
|
@ -172,6 +172,7 @@ static debug_item items[] = {
|
||||||
},
|
},
|
||||||
.limit_to = L_MP,
|
.limit_to = L_MP,
|
||||||
},
|
},
|
||||||
|
#if !defined(PLATFORM_WEB)
|
||||||
{
|
{
|
||||||
.kind = DITEM_LIST,
|
.kind = DITEM_LIST,
|
||||||
.name = "replay system",
|
.name = "replay system",
|
||||||
|
@ -209,6 +210,7 @@ static debug_item items[] = {
|
||||||
},
|
},
|
||||||
.limit_to = L_SP,
|
.limit_to = L_SP,
|
||||||
},
|
},
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
.kind = DITEM_LIST,
|
.kind = DITEM_LIST,
|
||||||
.name = "profilers",
|
.name = "profilers",
|
||||||
|
|
|
@ -17,16 +17,16 @@ typedef struct {
|
||||||
uint64_t total_received;
|
uint64_t total_received;
|
||||||
uint32_t outgoing_total;
|
uint32_t outgoing_total;
|
||||||
uint64_t total_sent;
|
uint64_t total_sent;
|
||||||
|
|
||||||
// NOTE(zaklaus): bandwidth (bytes/sec)
|
// NOTE(zaklaus): bandwidth (bytes/sec)
|
||||||
float incoming_bandwidth;
|
float incoming_bandwidth;
|
||||||
float outgoing_bandwidth;
|
float outgoing_bandwidth;
|
||||||
|
|
||||||
// NOTE(zaklaus): packet integrity
|
// NOTE(zaklaus): packet integrity
|
||||||
uint64_t packets_sent;
|
uint64_t packets_sent;
|
||||||
uint32_t packets_lost;
|
uint32_t packets_lost;
|
||||||
float packet_loss;
|
float packet_loss;
|
||||||
|
|
||||||
// NOTE(zaklaus): ping
|
// NOTE(zaklaus): ping
|
||||||
uint32_t ping;
|
uint32_t ping;
|
||||||
uint32_t low_ping;
|
uint32_t low_ping;
|
||||||
|
|
Loading…
Reference in New Issue