diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-03-25 16:12:24 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-03-25 16:12:24 +0000 |
commit | 8fc031fb84e7e266fbdf476b59d97f529c28dc36 (patch) | |
tree | 07ff1458e48da24b41b8800537409fe1f30d7ecd /include/services.h | |
parent | d8c4e705a2139682e6da65b864097df8d66f8432 (diff) |
Fix bug #1009, patch inspired by DukePyrolator, add a TS6 SID generator from DukePyrolator, as well as change SendServer() to take a Server struct and use the result of new_server() in the SendServer() call instead.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2206 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/services.h')
-rw-r--r-- | include/services.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/services.h b/include/services.h index 82631d883..e340d21f8 100644 --- a/include/services.h +++ b/include/services.h @@ -1321,7 +1321,7 @@ class CoreExport IRCDProto virtual void SendSVSPart(const char *, const char *, const char *) { } virtual void SendSWhois(const char *, const char *, const char *) { } virtual void SendEOB() { } - virtual void SendServer(const char *, int, const char *) = 0; + virtual void SendServer(Server *) = 0; virtual void ProcessUsermodes(User *, int, const char **) = 0; virtual int IsNickValid(const char *) { return 1; } virtual int IsChannelValid(const char *) { return 1; } |