ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/watch.h
Revision: 8752
Committed: Tue Jan 1 11:07:01 2019 UTC (5 years, 3 months ago) by michael
Content type: text/x-chdr
File size: 1901 byte(s)
Log Message:
- Update copyright years

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997 Jukka Santala (Donwulff)
5 * Copyright (c) 2005-2019 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 */
38 unsigned int hash_value; /**< Cached hash value of 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 */

Properties

Name Value
svn:eol-style native
svn:keywords Id