[svn] Send TS6 protocol for the actual work of override modules.
Wallops remain TS5-style for now.
This commit is contained in:
parent
abe616bb76
commit
8e8f4ffc19
|
@ -1,3 +1,12 @@
|
||||||
|
nenolod 2007/08/09 06:50:13 UTC (20070809-3552)
|
||||||
|
Log:
|
||||||
|
- update IDEAS as TS6 only is partially done
|
||||||
|
|
||||||
|
|
||||||
|
Changes: Modified:
|
||||||
|
+1 -1 trunk/IDEAS (File Modified)
|
||||||
|
|
||||||
|
|
||||||
nenolod 2007/08/09 06:47:26 UTC (20070809-3550)
|
nenolod 2007/08/09 06:47:26 UTC (20070809-3550)
|
||||||
Log:
|
Log:
|
||||||
- TS6 is always enabled now.
|
- TS6 is always enabled now.
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
*
|
||||||
* $Id: m_ojoin.c 3297 2007-03-28 14:49:48Z jilles $
|
* $Id: m_ojoin.c 3554 2007-08-10 22:31:14Z jilles $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "stdinc.h"
|
#include "stdinc.h"
|
||||||
|
@ -49,7 +49,7 @@ struct Message ojoin_msgtab = {
|
||||||
|
|
||||||
mapi_clist_av1 ojoin_clist[] = { &ojoin_msgtab, NULL };
|
mapi_clist_av1 ojoin_clist[] = { &ojoin_msgtab, NULL };
|
||||||
|
|
||||||
DECLARE_MODULE_AV1(ojoin, NULL, NULL, ojoin_clist, NULL, NULL, "$Revision: 3297 $");
|
DECLARE_MODULE_AV1(ojoin, NULL, NULL, ojoin_clist, NULL, NULL, "$Revision: 3554 $");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** mo_ojoin
|
** mo_ojoin
|
||||||
|
@ -105,7 +105,10 @@ mo_ojoin(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
if(*parv[1] == '@')
|
if(*parv[1] == '@')
|
||||||
{
|
{
|
||||||
add_user_to_channel(chptr, source_p, CHFL_CHANOP);
|
add_user_to_channel(chptr, source_p, CHFL_CHANOP);
|
||||||
sendto_server(client_p, chptr, NOCAPS, NOCAPS,
|
sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
|
||||||
|
":%s SJOIN %ld %s + :@%s",
|
||||||
|
me.id, (long) chptr->channelts, chptr->chname, source_p->id);
|
||||||
|
sendto_server(client_p, chptr, NOCAPS, CAP_TS6,
|
||||||
":%s SJOIN %ld %s + :@%s",
|
":%s SJOIN %ld %s + :@%s",
|
||||||
me.name, (long) chptr->channelts, chptr->chname, source_p->name);
|
me.name, (long) chptr->channelts, chptr->chname, source_p->name);
|
||||||
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN %s",
|
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN %s",
|
||||||
|
@ -118,7 +121,10 @@ mo_ojoin(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
else if(*parv[1] == '+')
|
else if(*parv[1] == '+')
|
||||||
{
|
{
|
||||||
add_user_to_channel(chptr, source_p, CHFL_VOICE);
|
add_user_to_channel(chptr, source_p, CHFL_VOICE);
|
||||||
sendto_server(client_p, chptr, NOCAPS, NOCAPS,
|
sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
|
||||||
|
":%s SJOIN %ld %s + :+%s",
|
||||||
|
me.id, (long) chptr->channelts, chptr->chname, source_p->id);
|
||||||
|
sendto_server(client_p, chptr, NOCAPS, CAP_TS6,
|
||||||
":%s SJOIN %ld %s + :+%s",
|
":%s SJOIN %ld %s + :+%s",
|
||||||
me.name, (long) chptr->channelts, chptr->chname, source_p->name);
|
me.name, (long) chptr->channelts, chptr->chname, source_p->name);
|
||||||
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN %s",
|
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN %s",
|
||||||
|
@ -130,7 +136,10 @@ mo_ojoin(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
add_user_to_channel(chptr, source_p, CHFL_PEON);
|
add_user_to_channel(chptr, source_p, CHFL_PEON);
|
||||||
sendto_server(client_p, chptr, NOCAPS, NOCAPS,
|
sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
|
||||||
|
":%s JOIN %ld %s +",
|
||||||
|
source_p->id, (long) chptr->channelts, chptr->chname);
|
||||||
|
sendto_server(client_p, chptr, NOCAPS, CAP_TS6,
|
||||||
":%s SJOIN %ld %s + :%s",
|
":%s SJOIN %ld %s + :%s",
|
||||||
me.name, (long) chptr->channelts, chptr->chname, source_p->name);
|
me.name, (long) chptr->channelts, chptr->chname, source_p->name);
|
||||||
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN %s",
|
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN %s",
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||||
* USA
|
* USA
|
||||||
*
|
*
|
||||||
* $Id: m_okick.c 3117 2007-01-02 13:11:04Z jilles $
|
* $Id: m_okick.c 3554 2007-08-10 22:31:14Z jilles $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "stdinc.h"
|
#include "stdinc.h"
|
||||||
|
@ -49,7 +49,7 @@ struct Message okick_msgtab = {
|
||||||
|
|
||||||
mapi_clist_av1 okick_clist[] = { &okick_msgtab, NULL };
|
mapi_clist_av1 okick_clist[] = { &okick_msgtab, NULL };
|
||||||
|
|
||||||
DECLARE_MODULE_AV1(okick, NULL, NULL, okick_clist, NULL, NULL, "$Revision: 3117 $");
|
DECLARE_MODULE_AV1(okick, NULL, NULL, okick_clist, NULL, NULL, "$Revision: 3554 $");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** m_okick
|
** m_okick
|
||||||
|
@ -135,7 +135,9 @@ mo_okick(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
|
|
||||||
sendto_channel_local(ALL_MEMBERS, chptr, ":%s KICK %s %s :%s",
|
sendto_channel_local(ALL_MEMBERS, chptr, ":%s KICK %s %s :%s",
|
||||||
me.name, chptr->chname, who->name, comment);
|
me.name, chptr->chname, who->name, comment);
|
||||||
sendto_server(&me, chptr, NOCAPS, NOCAPS,
|
sendto_server(&me, chptr, CAP_TS6, NOCAPS,
|
||||||
|
":%s KICK %s %s :%s", me.id, chptr->chname, who->id, comment);
|
||||||
|
sendto_server(&me, chptr, NOCAPS, CAP_TS6,
|
||||||
":%s KICK %s %s :%s", me.name, chptr->chname, who->name, comment);
|
":%s KICK %s %s :%s", me.name, chptr->chname, who->name, comment);
|
||||||
remove_user_from_channel(msptr);
|
remove_user_from_channel(msptr);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
*
|
||||||
* $Id: m_opme.c 3297 2007-03-28 14:49:48Z jilles $
|
* $Id: m_opme.c 3554 2007-08-10 22:31:14Z jilles $
|
||||||
*/
|
*/
|
||||||
#include "stdinc.h"
|
#include "stdinc.h"
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
|
@ -46,7 +46,7 @@ struct Message opme_msgtab = {
|
||||||
|
|
||||||
mapi_clist_av1 opme_clist[] = { &opme_msgtab, NULL };
|
mapi_clist_av1 opme_clist[] = { &opme_msgtab, NULL };
|
||||||
|
|
||||||
DECLARE_MODULE_AV1(opme, NULL, NULL, opme_clist, NULL, NULL, "$Revision: 3297 $");
|
DECLARE_MODULE_AV1(opme, NULL, NULL, opme_clist, NULL, NULL, "$Revision: 3554 $");
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -105,8 +105,12 @@ mo_opme(struct Client *client_p, struct Client *source_p, int parc, const char *
|
||||||
sendto_server(NULL, NULL, NOCAPS, NOCAPS,
|
sendto_server(NULL, NULL, NOCAPS, NOCAPS,
|
||||||
":%s WALLOPS :OPME called for [%s] by %s!%s@%s",
|
":%s WALLOPS :OPME called for [%s] by %s!%s@%s",
|
||||||
me.name, parv[1], source_p->name, source_p->username, source_p->host);
|
me.name, parv[1], source_p->name, source_p->username, source_p->host);
|
||||||
sendto_server(NULL, chptr, NOCAPS, NOCAPS, ":%s PART %s", source_p->name, parv[1]);
|
sendto_server(NULL, chptr, CAP_TS6, NOCAPS, ":%s PART %s", source_p->id, parv[1]);
|
||||||
sendto_server(NULL, chptr, NOCAPS, NOCAPS,
|
sendto_server(NULL, chptr, NOCAPS, CAP_TS6, ":%s PART %s", source_p->name, parv[1]);
|
||||||
|
sendto_server(NULL, chptr, CAP_TS6, NOCAPS,
|
||||||
|
":%s SJOIN %ld %s + :@%s",
|
||||||
|
me.id, (long) chptr->channelts, parv[1], source_p->id);
|
||||||
|
sendto_server(NULL, chptr, NOCAPS, CAP_TS6,
|
||||||
":%s SJOIN %ld %s + :@%s",
|
":%s SJOIN %ld %s + :@%s",
|
||||||
me.name, (long) chptr->channelts, parv[1], source_p->name);
|
me.name, (long) chptr->channelts, parv[1], source_p->name);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#define SERNO "20070809-3550"
|
#define SERNO "20070809-3552"
|
||||||
|
|
Loading…
Reference in New Issue