mirror of
https://github.com/anope/anope.git
synced 2026-07-08 10:03:14 +02:00
BUILD : 1.7.10 (824) BUGS : 389 NOTES : Added the possibility for protocol files to override the code setting mod_current_buffer, which is needed for InspIRCd
git-svn-id: svn://svn.anope.org/anope/trunk@824 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@577 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
e0cba0bb71
commit
ca25d6e252
@@ -421,6 +421,15 @@ void inspircd_set_umode(User * user, int ac, char **av)
|
||||
}
|
||||
}
|
||||
|
||||
/* Set mod_current_buffer from here */
|
||||
void inspircd_set_mod_current_buffer(int ac, char **av)
|
||||
{
|
||||
if (ac >= 3)
|
||||
mod_current_buffer = sstrdup(av[2]);
|
||||
else
|
||||
mod_current_buffer = NULL;
|
||||
}
|
||||
|
||||
int anope_event_nickchange(char *source, int ac, char **av);
|
||||
int anope_event_servertopic(char *source, int ac, char **av);
|
||||
int anope_event_servermode(char *source, int ac, char **av);
|
||||
@@ -1424,6 +1433,7 @@ void inspircd_cmd_ctcp(char *source, char *dest, char *buf)
|
||||
* These prototypes must match what anope expects.
|
||||
**/
|
||||
void moduleAddAnopeCmds() {
|
||||
pmodule_set_mod_current_buffer(inspircd_set_mod_current_buffer);
|
||||
pmodule_cmd_svsnoop(inspircd_cmd_svsnoop);
|
||||
pmodule_cmd_remove_akill(inspircd_cmd_remove_akill);
|
||||
pmodule_cmd_topic(inspircd_cmd_topic);
|
||||
|
||||
Reference in New Issue
Block a user