Fixing a compilation issue, wherein two global vars, conf and chan, were defined...
[revinetd.git] / statistics.h
blob6fc21e611c9ff6fc3a91b2bb3446c5de34cb1f4b
1 #pragma once
4 struct Statistics_str {
5 unsigned int nmb_client_accepts_acc;
6 unsigned int nmb_sock_queue_enqueues_acc;
7 unsigned int size_sock_queue;
8 unsigned int nmb_relay_worker_conns_acc;
9 unsigned int nmb_relay_worker_conns_cur;
10 unsigned int nmb_keep_alives_recv;
12 typedef struct Statistics_str Statistics;
14 void reset_stats(Statistics *st);