UserInfo

The information of the user.

struct UserInfo {
                    uid_t uid;
                    char userAccount[MAX_USER_ACCOUNT_LENGTH];
                    UserInfo()
                    : uid(0) {
                    userAccount[0] = '';
                    }
                    };

uid
The user ID.
userAccount
User account. The maximum data length is MAX_USER_ACCOUNT_LENGTH_TYPE.