1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 11:03:13 +02:00

Replaced anope_SendConnect() with direct call to SendConnect() in IRCDProto class.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1355 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Naram Qashat cyberbotx@cyberbotx.com
2008-10-02 21:46:00 +00:00
parent 088c82ba1d
commit cd038ecb7a
3 changed files with 1 additions and 7 deletions
-1
View File
@@ -1115,7 +1115,6 @@ E unsigned int mysql_rand(void);
E void anope_cmd_capab(); /* CAPAB */
E void anope_cmd_chghost(const char *nick, const char *vhost); /* CHGHOST */
E void anope_cmd_chgident(const char *nick, const char *vIdent); /* CHGIDENT */
E void anope_SendConnect(); /* Connect */
E void anope_cmd_ea(); /* EA */
E void anope_cmd_tmode(const char *source, const char *dest, const char *fmt, ...); /* TMODE */
E void anope_SendBanDel(const char *name, const char *nick); /* MODE -b */
+1 -1
View File
@@ -712,7 +712,7 @@ int init_secondary(int ac, char **av)
RemotePort);
}
anope_SendConnect();
ircdproto->SendConnect();
send_event(EVENT_CONNECT, 1, EVENT_STOP);
sgets2(inbuf, sizeof(inbuf), servsock);
-5
View File
@@ -43,11 +43,6 @@ void anope_ProcessUsermodes(User *user, int ac, const char **av)
ircdproto->ProcessUsermodes(user, ac, av);
}
void anope_SendConnect()
{
ircdproto->SendConnect();
}
void anope_SendSVSHOLD(const char *nick)
{
ircdproto->SendSVSHOLD(nick);