Added Account Age

+ Added the ability to see the account age of registered users. Changes
are both in server and client. The server will now send back the
registration date along with the user data. The client will then use
this to calculate the account age and display it in the user details
window.
This commit is contained in:
Matt Lowe 2015-01-07 22:28:35 +01:00
parent 7476667b69
commit 02043ad4f9
4 changed files with 72 additions and 37 deletions

View file

@ -21,4 +21,5 @@ message ServerInfo_User {
optional sint32 id = 8 [default = -1];
optional sint32 server_id = 9 [default = -1];
optional uint64 session_id = 10;
optional uint64 accountage_secs = 11;
}