X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fm_endburst.c;h=9243d30bf4d41ae7b9e06433626abe18b12d9c2f;hb=241fa041ccfa00c2f9f255c4c2a572d877b975e3;hp=c987428cbbfac02b77b7379d3c55ceb2e64f3bba;hpb=8af0b38d9397766bbed511f317832e5c5bf7e45d;p=ircu2.10.12-pk.git diff --git a/ircd/m_endburst.c b/ircd/m_endburst.c index c987428..9243d30 100644 --- a/ircd/m_endburst.c +++ b/ircd/m_endburst.c @@ -166,51 +166,3 @@ int ms_end_of_burst_ack(struct Client *cptr, struct Client *sptr, int parc, char return 0; } - - -#if 0 -/* - * m_end_of_burst - Added Xorath 6-14-96, rewritten by Run 24-7-96 - * - and fixed by record and Kev 8/1/96 - * - and really fixed by Run 15/8/96 :p - * This the last message in a net.burst. - * It clears a flag for the server sending the burst. - * - * parv[0] - sender prefix - */ -int m_end_of_burst(struct Client *cptr, struct Client *sptr, int parc, char **parv) -{ - if (!IsServer(sptr)) - return 0; - - sendto_op_mask(SNO_NETWORK, "Completed net.burst from %s.", sptr->name); /* XXX DEAD */ - sendto_serv_butone(cptr, "%s EB", NumServ(sptr)); /* XXX DEAD */ - ClearBurst(sptr); - SetBurstAck(sptr); - if (MyConnect(sptr)) - sendto_one(sptr, "%s EA", NumServ(&me)); /* XXX DEAD */ - - return 0; -} -/* - * m_end_of_burst_ack - * - * This the acknowledge message of the `END_OF_BURST' message. - * It clears a flag for the server receiving the burst. - * - * parv[0] - sender prefix - */ -int m_end_of_burst_ack(struct Client *cptr, struct Client *sptr, int parc, char **parv) -{ - if (!IsServer(sptr)) - return 0; - - sendto_op_mask(SNO_NETWORK, "%s acknowledged end of net.burst.", sptr->name); /* XXX DEAD */ - sendto_serv_butone(cptr, "%s EA", NumServ(sptr)); /* XXX DEAD */ - ClearBurstAck(sptr); - - return 0; -} - -#endif /* 0 */ -