write first version of user system
This commit is contained in:
@ -1,4 +1,12 @@
|
||||
#ifndef DATA_H
|
||||
#define DATA_H
|
||||
|
||||
#include <cstdint>
|
||||
#include "utils.h"
|
||||
struct FullUserData {
|
||||
char username[21];
|
||||
hash_t password_hash;
|
||||
char name[21];
|
||||
char mailAddr[31];
|
||||
uint8_t privilege;
|
||||
};
|
||||
#endif
|
Reference in New Issue
Block a user