X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/47adde3def730b5e48619e03d3ae9c842120825e..c3780ae27f97a161c6bb5846947fba6605e45281:/include/s_stats.h diff --git a/include/s_stats.h b/include/s_stats.h index b4757d5a..47889d7f 100644 --- a/include/s_stats.h +++ b/include/s_stats.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: s_stats.h 1409 2006-05-21 14:46:17Z jilles $ */ #ifndef INCLUDED_s_stats_h @@ -45,16 +43,12 @@ struct ServerStatistics unsigned int is_cl; /* number of client connections */ unsigned int is_sv; /* number of server connections */ unsigned int is_ni; /* connection but no idea who it was */ - unsigned short is_cbs; /* bytes sent to clients */ - unsigned short is_cbr; /* bytes received to clients */ - unsigned short is_sbs; /* bytes sent to servers */ - unsigned short is_sbr; /* bytes received to servers */ - unsigned long is_cks; /* k-bytes sent to clients */ - unsigned long is_ckr; /* k-bytes received to clients */ - unsigned long is_sks; /* k-bytes sent to servers */ - unsigned long is_skr; /* k-bytes received to servers */ - time_t is_cti; /* time spent connected by clients */ - time_t is_sti; /* time spent connected by servers */ + unsigned long long int is_cbs; /* bytes sent to clients */ + unsigned long long int is_cbr; /* bytes received to clients */ + unsigned long long int is_sbs; /* bytes sent to servers */ + unsigned long long int is_sbr; /* bytes received to servers */ + unsigned long long int is_cti; /* time spent connected by clients */ + unsigned long long int is_sti; /* time spent connected by servers */ unsigned int is_ac; /* connections accepted */ unsigned int is_ref; /* accepts refused */ unsigned int is_unco; /* unknown commands */ @@ -67,9 +61,11 @@ struct ServerStatistics unsigned int is_asuc; /* successful auth requests */ unsigned int is_abad; /* bad auth requests */ unsigned int is_rej; /* rejected from cache */ + unsigned int is_thr; /* number of throttled connections */ unsigned int is_ssuc; /* successful sasl authentications */ unsigned int is_sbad; /* failed sasl authentications */ unsigned int is_tgch; /* messages blocked due to target change */ + unsigned int is_rl; /* commands blocked due to ratelimit */ }; extern struct ServerStatistics ServerStats;