ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/include/watch.h
Revision: 7329
Committed: Thu Feb 18 21:07:50 2016 UTC (8 years, 1 month ago) by michael
Content type: text/x-chdr
File size: 1884 byte(s)
Log Message:
- Now that we got time_t to work nicely on openbsd with snprintf's conversion specifiers,
  we ran into a similiar issue on Raspbian/ARMv7's time_t which is of signed 32 bit and
  doesn't cope at all with %j. Instead of doing tricks, get rid of time_t everywhere and
  forever and use uintmax_t instead which has at least a 'standardized' conversion specifier
  associated with it.

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-2016 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; /**< Embedded dlink_node used to link into watchTable */
36 dlink_list watched_by; /**< List of clients that have this
37 entry on their watch list */
38 uintmax_t lasttime; /**< Last time the client was seen */
39 char name[NICKLEN + 1]; /**< Name of the client to watch */
40 };
41
42 extern void watch_init(void);
43 extern void watch_add_to_hash_table(const char *, struct Client *);
44 extern void watch_del_from_hash_table(const char *, struct Client *);
45 extern void watch_check_hash(const struct Client *, const enum irc_numerics);
46 extern void watch_del_watch_list(struct Client *);
47 extern void watch_count_memory(unsigned int *const, size_t *const);
48 extern struct Watch *watch_find_hash(const char *);
49 #endif

Properties

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