161 |
|
struct Server *serv; /**< ...defined, if this is a server */ |
162 |
|
struct Client *servptr; /**< Points to server this Client is on */ |
163 |
|
struct Client *from; /**< == self, if Local Client, *NEVER* NULL! */ |
164 |
– |
char *away; /**< Client's AWAY message. Can be set/unset via AWAY command */ |
164 |
|
|
165 |
|
time_t tsinfo; /**< TS on the nick, SVINFO on server */ |
166 |
|
time_t servicestamp; /**< Last time client has been identified for its nick */ |
174 |
|
dlink_list whowas; |
175 |
|
dlink_list channel; /**< chain of channel pointer blocks */ |
176 |
|
|
177 |
+ |
char away[AWAYLEN + 1]; /**< Client's AWAY message. Can be set/unset via AWAY command */ |
178 |
|
char name[HOSTLEN + 1]; /**< unique name for a client nick or host */ |
179 |
|
char id[IDLEN + 1]; /**< client ID, unique ID per client */ |
180 |
|
|