summaryrefslogtreecommitdiff
path: root/src/ircd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ircd.c')
-rw-r--r--src/ircd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ircd.c b/src/ircd.c
index 3f4afa35c..273c7922a 100644
--- a/src/ircd.c
+++ b/src/ircd.c
@@ -362,9 +362,9 @@ void anope_SendEOB()
ircdproto->SendEOB();
}
-int anope_flood_mode_check(const char *value)
+int anope_IsFloodModeParamValid(const char *value)
{
- return ircdproto->flood_mode_check(value);
+ return ircdproto->IsFloodModeParamValid(value);
}
void anope_SendJupe(const char *jserver, const char *who, const char *reason)
@@ -395,7 +395,7 @@ void anope_SendCTCP(const char *source, const char *dest, const char *fmt, ...)
ircdproto->SendCTCP(source, dest, buf);
}
-void anope_cmd_numeric(const char *source, int numeric, const char *dest, const char *fmt, ...)
+void anope_SendNumeric(const char *source, int numeric, const char *dest, const char *fmt, ...)
{
va_list args;
char buf[BUFSIZE] = "";
@@ -404,7 +404,7 @@ void anope_cmd_numeric(const char *source, int numeric, const char *dest, const
vsnprintf(buf, BUFSIZE - 1, fmt, args);
va_end(args);
}
- ircdproto->cmd_numeric(source, numeric, dest, *buf ? buf : NULL);
+ ircdproto->SendNumeric(source, numeric, dest, *buf ? buf : NULL);
}
/**