summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-01-18 18:03:59 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-01-18 18:03:59 +0000
commit3d1b993e6572de08c3a180d953d940d0e7a05879 (patch)
treedf9ff852fcf92b710c6960a8debc9e3c67a36afa /include
parent34675aaac16e0162d640380a210761d0d52a05d9 (diff)
- Fixed indentation, removed whitespaces/tabs, update copyright header
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2856 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r--include/watch.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/watch.h b/include/watch.h
index 8a4e2d8..d495e81 100644
--- a/include/watch.h
+++ b/include/watch.h
@@ -1,8 +1,8 @@
/*
- * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
+ * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
*
- * Copyright (C) 1997 Jukka Santala (Donwulff)
- * Copyright (C) 2005 by the Hybrid Development Team.
+ * Copyright (c) 1997 Jukka Santala (Donwulff)
+ * Copyright (c) 2005-2014 ircd-hybrid development team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -28,14 +28,15 @@
#ifndef INCLUDED_watch_h
#define INCLUDED_watch_h
+
/*! \brief Watch structure */
struct Watch
{
- dlink_node node; /**< Embedded dlink_node used to link into watchTable */
- dlink_list watched_by; /**< list of clients that have this
+ dlink_node node; /**< Embedded dlink_node used to link into watchTable */
+ dlink_list watched_by; /**< List of clients that have this
entry on their watch list */
- time_t lasttime; /**< last time the client was seen */
- char nick[NICKLEN + 1]; /**< nick name of the client to watch */
+ time_t lasttime; /**< Last time the client was seen */
+ char nick[NICKLEN + 1]; /**< Nick name of the client to watch */
};
extern void watch_init(void);