summaryrefslogtreecommitdiff
path: root/include/extern.h
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-03 22:30:33 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-03 22:30:33 +0000
commit16a90d28f61707b2f053b163e33c6678bd861971 (patch)
treea67784e553135ab1a519ff5ee685a07702f4573a /include/extern.h
parentdc44944c713d5d19a7d6e7fa443dde03fe4d9832 (diff)
Undo me smoking a nice pipe of craq on UID support (no wonder this wasn't working), and fix findbot() to do what we want.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1524 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/extern.h')
-rw-r--r--include/extern.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/extern.h b/include/extern.h
index 56c1c4b35..b4e975004 100644
--- a/include/extern.h
+++ b/include/extern.h
@@ -71,6 +71,12 @@ E void botchanmsgs(User *u, ChannelInfo *ci, char *buf);
E void load_bs_dbase(void);
E void save_bs_dbase(void);
E BotInfo *findbot(const char *nick);
+
+/** Finds a pseudoclient, given a UID. Useful for TS6 protocol modules.
+ * @param uid The UID to search for
+ * @return The pseudoclient structure, or NULL if one could not be found
+ */
+E BotInfo *findbot_byuid(const char *uid);
E void bot_join(ChannelInfo *ci);
E char *normalizeBuffer(const char *);
E void insert_bot(BotInfo * bi);