diff options
author | Matt Schatz <genius3000@g3k.solutions> | 2019-02-17 02:10:26 -0700 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-02-18 09:17:38 +0000 |
commit | e02c22ff165c7b0dbe39343066a4167e94f5618e (patch) | |
tree | 5519c2b6df33e206fac03c99104d40a94a86d34e /include/inspircd.h | |
parent | 21e7efdadfa685ac1ddcb0a0a515502bc873302b (diff) |
Add a function for displaying human-readable durations.
Add InspIRCd::DurationString() to take a time_t and return a string
with the duration in a human-readable format (ex: 1y20w2d3h5m9s).
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index f5c7dbafb..0de64b103 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -516,6 +516,12 @@ class CoreExport InspIRCd */ static bool IsValidDuration(const std::string& str); + /** Return a duration in seconds as a human-readable string. + * @param duration The duration in seconds to convert to a human-readable string. + * @return A string representing the given duration. + */ + static std::string DurationString(time_t duration); + /** Attempt to compare a password to a string from the config file. * This will be passed to handling modules which will compare the data * against possible hashed equivalents in the input string. |