1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#if 0
int hc_stats_snprintf(char *s, size_t size, const hicn_light_stats_t *stats) {
return snprintf(
s, size,
"pkts processed: %u\n\tinterests: %u\n\t"
"data: %u\npkts from cache count: %u\npkts no pit count: "
"%u\nexpired:\n\t interests: "
"%u\n\t data: %u\ninterests aggregated: "
"%u\nlru evictions: "
"%u\ndropped: "
"%u\ninterests retx: "
"%u\npit entries: %u\ncs entries: %u",
stats->forwarder.countReceived, stats->forwarder.countInterestsReceived,
stats->forwarder.countObjectsReceived,
stats->forwarder.countInterestsSatisfiedFromStore,
stats->forwarder.countDroppedNoReversePath,
stats->forwarder.countInterestsExpired, stats->forwarder.countDataExpired,
stats->pkt_cache.n_lru_evictions, stats->forwarder.countDropped,
stats->forwarder.countInterestsAggregated,
stats->forwarder.countInterestsRetransmitted,
stats->pkt_cache.n_pit_entries, stats->pkt_cache.n_cs_entries);
}
#endif
|