1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| #ifndef __NETDISK_LOGINTABLE_H__
| #define __NETDISK_LOGINTABLE_H__
|
| #include "usg_common.h"
| #include "usg_typedef.h"
|
| typedef struct LoginTableRecord
| {
| char loginUUID[512];
| char username[512];
| char password[512];
| char host[512];
| int port;
| int invalid;
| } LoginTable;
|
|
|
|
| class LoginTable {
| private:
| static char * logindatFile = "./data/login.dat"
| public:
|
| }
|
|
| #endif
|
|