35 |
dlink_node node; /**< List node; linked into watchTable */ |
dlink_node node; /**< List node; linked into watchTable */ |
36 |
dlink_list watched_by; /**< List of clients that have this entry on their watch list */ |
dlink_list watched_by; /**< List of clients that have this entry on their watch list */ |
37 |
uintmax_t lasttime; /**< Last time the client was seen */ |
uintmax_t lasttime; /**< Last time the client was seen */ |
38 |
|
unsigned int hash_value; /**< Cached hash value derived from Watch::name */ |
39 |
char name[NICKLEN + 1]; /**< Name of the client to watch */ |
char name[NICKLEN + 1]; /**< Name of the client to watch */ |
40 |
}; |
}; |
41 |
|
|