blob: 84168d1170622591076e494f3ef63af447c6af5b (
plain) (
blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#ifndef _BBS_DAEMONS_H
#include "pttstruct.h"
///////////////////////////////////////////////////////////////////////
// From Host Nick Daemon (fromd)
#ifndef FROMD_ADDR
#define FROMD_ADDR ":5130"
#endif
///////////////////////////////////////////////////////////////////////
// Register E-Mail Database Daemon (regmaild)
#ifndef REGMAILD_ADDR
#define REGMAILD_ADDR ":5131"
#endif
enum {
REGMAILDB_REQ_COUNT = 1,
REGMAILDB_REQ_SET,
};
typedef struct
{
size_t cb;
int operation;
char userid [IDLEN+1];
char email [50]; // TODO define const in pttstruct.h
} regmaildb_req;
///////////////////////////////////////////////////////////////////////
// Login Daemon (logind)
typedef struct login_data
{
// size of current structure
size_t cb;
void *ack;
// terminal information
int t_lines, t_cols;
int encoding;
Fnv32_t client_code;
// user authentication
char userid[IDLEN+1];
char hostip[IPV4LEN+1];
char port [IDLEN+1];
} login_data;
///////////////////////////////////////////////////////////////////////
// online friend relation daemon
//
typedef struct {
int index; // SHM->uinfo[index]
int uid; // 踹 cache server 銝銝甇, 蝣箄.
int friendstat;
int rfriendstat;
} ocfs_t;
#endif // _BBS_DAEMONS_H
// vim:et
|