/usr/include/dovecot/auth-stats.h is in dovecot-dev 1:2.2.22-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #ifndef AUTH_STATS_H
#define AUTH_STATS_H
struct auth_stats {
uint32_t auth_success_count;
uint32_t auth_master_success_count;
uint32_t auth_failure_count;
uint32_t auth_db_tempfail_count;
uint32_t auth_cache_hit_count;
uint32_t auth_cache_miss_count;
};
extern const struct stats_vfuncs auth_stats_vfuncs;
#endif
|