diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/extern.h | 6 | ||||
-rw-r--r-- | include/services.h | 2 |
2 files changed, 7 insertions, 1 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); diff --git a/include/services.h b/include/services.h index bfcb014d6..ae3d4b6dd 100644 --- a/include/services.h +++ b/include/services.h @@ -1223,7 +1223,7 @@ class IRCDProto { va_end(args); SendModeInternal(bi, dest, buf); } - virtual void SendClientIntroduction(const char *, const char *, const char *, const char *, const char *, const char *uid = ts6_uid_retrieve()) = 0; + virtual void SendClientIntroduction(const char *, const char *, const char *, const char *, const char *, const char *uid) = 0; virtual void SendKick(BotInfo *bi, const char *chan, const char *user, const char *fmt, ...) { va_list args; |