diff options
author | Peter Powell <petpow@saberuk.com> | 2019-02-15 10:56:08 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-02-15 11:35:25 +0000 |
commit | 168ee804903e5ee10edc04e870e36a1256885e34 (patch) | |
tree | b50842f0c177515f4fa4e1ff0682a8bb652c0642 /include/users.h | |
parent | f5b2265c2e6868431abbaa301aa1d64e8d49d8b0 (diff) |
Rename User::nping to nextping for consistency with lastping.
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/users.h b/include/users.h index 3937f74aa..39e7e90f0 100644 --- a/include/users.h +++ b/include/users.h @@ -791,9 +791,8 @@ class CoreExport LocalUser : public User, public insp::intrusive_list_node<Local */ unsigned int exempt:1; - /** Used by PING checking code - */ - time_t nping; + /** The time at which this user should be pinged next. */ + time_t nextping; /** Time that the connection last sent a message, used to calculate idle time */ |