summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-06-19 12:09:18 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-06-19 12:09:18 +0000
commitff65950f67a0b47d31d8a350478513f488ee600f (patch)
treebb748fc109918d7527e3018638675785ee3076af /include
parent4066915deda6f21c5b6b8726c53cb9df9d597bb2 (diff)
- whowas: Renamed functions.
add_history -> whowas_add_history off_history -> whowas_off_history get_history -> whowas_get_history git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2299 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r--include/whowas.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/whowas.h b/include/whowas.h
index 2b6bfbd..42fa7e4 100644
--- a/include/whowas.h
+++ b/include/whowas.h
@@ -50,29 +50,29 @@ struct Whowas
extern void whowas_init(void);
/*
-** add_history
+** whowas_add_history
** Add the currently defined name of the client to history.
** usually called before changing to a new name (nick).
** Client must be a fully registered user.
*/
-extern void add_history(struct Client *, const int);
+extern void whowas_add_history(struct Client *, const int);
/*
-** off_history
+** whowas_off_history
** This must be called when the client structure is about to
** be released. History mechanism keeps pointers to client
** structures and it must know when they cease to exist. This
** also implicitly calls AddHistory.
*/
-extern void off_history(struct Client *);
+extern void whowas_off_history(struct Client *);
/*
-** get_history
+** whowas_get_history
** Return the current client that was using the given
** nickname within the timelimit. Returns NULL, if no
** one found...
*/
-extern struct Client *get_history(const char *, time_t);
+extern struct Client *whowas_get_history(const char *, time_t);
/*
** for debugging...counts related structures stored in whowas array.