| 1 |
/* |
| 2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
| 3 |
* |
| 4 |
* Copyright (c) 1997 Jukka Santala (Donwulff) |
| 5 |
* Copyright (c) 2005-2020 ircd-hybrid development team |
| 6 |
* |
| 7 |
* This program is free software; you can redistribute it and/or modify |
| 8 |
* it under the terms of the GNU General Public License as published by |
| 9 |
* the Free Software Foundation; either version 2 of the License, or |
| 10 |
* (at your option) any later version. |
| 11 |
* |
| 12 |
* This program is distributed in the hope that it will be useful, |
| 13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 |
* GNU General Public License for more details. |
| 16 |
* |
| 17 |
* You should have received a copy of the GNU General Public License |
| 18 |
* along with this program; if not, write to the Free Software |
| 19 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
| 20 |
* USA |
| 21 |
*/ |
| 22 |
|
| 23 |
/*! \file watch.h |
| 24 |
* \brief Header including structures and prototypes for WATCH support |
| 25 |
* \version $Id$ |
| 26 |
*/ |
| 27 |
|
| 28 |
#ifndef INCLUDED_watch_h |
| 29 |
#define INCLUDED_watch_h |
| 30 |
|
| 31 |
|
| 32 |
/*! \brief Watch structure */ |
| 33 |
struct Watch |
| 34 |
{ |
| 35 |
dlink_node node; /**< List node; linked into watchTable */ |
| 36 |
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; real time */ |
| 38 |
unsigned int hash_value; /**< Cached hash value derived from Watch::name */ |
| 39 |
char name[NICKLEN + 1]; /**< Name of the client to watch */ |
| 40 |
}; |
| 41 |
|
| 42 |
extern void watch_add_to_hash_table(const char *, struct Client *); |
| 43 |
extern void watch_del_from_hash_table(const char *, struct Client *); |
| 44 |
extern void watch_check_hash(const struct Client *, const enum irc_numerics); |
| 45 |
extern void watch_del_watch_list(struct Client *); |
| 46 |
extern void watch_count_memory(unsigned int *const, size_t *const); |
| 47 |
extern struct Watch *watch_find_hash(const char *); |
| 48 |
#endif /* INCLUDED_watch_h */ |