]> jfr.im git - irc/blitzed-org/charybdis.git/commitdiff
Kill unsupported modules directory.
authorWilliam Pitcock <redacted>
Mon, 23 Aug 2010 22:03:37 +0000 (17:03 -0500)
committerWilliam Pitcock <redacted>
Mon, 23 Aug 2010 22:03:37 +0000 (17:03 -0500)
configure.ac
unsupported/Makefile.in [deleted file]
unsupported/m_clearchan.c [deleted file]
unsupported/m_force.c [deleted file]
unsupported/sno_channeljoin.c [deleted file]

index e32a053275a5c760d5898e8037fc37aa53211e03..7e9d7fb69ae270f55ac0c7c4a85035576789801e 100644 (file)
@@ -1160,7 +1160,6 @@ AC_CONFIG_FILES(                  \
        bandb/Makefile                  \
        ssld/Makefile                   \
        extensions/Makefile             \
-       unsupported/Makefile            \
        src/Makefile                    \
        modules/Makefile                \
        tools/Makefile                  \
diff --git a/unsupported/Makefile.in b/unsupported/Makefile.in
deleted file mode 100644 (file)
index 4d55313..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-#
-# Makefile.in for ircd/unsupported
-#
-# $Id: Makefile.in 3478 2007-05-24 15:10:06Z jilles $
-#
-CC             = @CC@
-RM             = @RM@
-SED             = @SED@
-LEX            = @LEX@
-LEXLIB         = @LEXLIB@
-CFLAGS         = @IRC_CFLAGS@ -DIRCD_PREFIX=\"@prefix@\"
-PICFLAGS       = @PICFLAGS@
-MKDEP          = @MKDEP@
-INSTALL                = @INSTALL@
-INSTALL_PROGRAM        = @INSTALL_PROGRAM@
-INSTALL_DATA   = @INSTALL_DATA@
-INSTALL_SUID    = @INSTALL_PROGRAM@ -o root -m 4755
-SHELL          = /bin/sh
-AUTOMODULEDIR  = @moduledir@/unsupported
-
-SSL_LIBS       = @SSL_LIBS@
-SSL_INCLUDES   = @SSL_INCLUDES@
-
-IRCDLIBS       = @LIBS@ $(SSL_LIBS)
-
-INCLUDES       = -I. -I../include -I../libcharybdis -I../libratbox/include $(SSL_INCLUDES)
-CPPFLAGS       = ${INCLUDES} @CPPFLAGS@
-
-SRCS =                          \
-  m_clearchan.c                        \
-  m_force.c                    \
-  sno_channeljoin.c
-
-OBJS = ${SRCS:.c=.so}
-
-default:       build
-build: all
-all: $(OBJS)
-
-install: all
-       -@if test ! -d $(DESTDIR)$(AUTOMODULEDIR); then \
-                mkdir $(DESTDIR)$(AUTOMODULEDIR); \
-        fi
-       @echo "Installing modules into $(DESTDIR)$(AUTOMODULEDIR) .."
-       @for file in $(OBJS); do \
-               $(INSTALL_DATA) $$file $(DESTDIR)$(AUTOMODULEDIR); \
-       done
-
-.SUFFIXES: .so
-
-.c.so:
-       ${CC} ${PICFLAGS}  ${CPPFLAGS} ${CFLAGS} $< -o $@
-
-.PHONY: depend clean distclean
-depend:
-       @${MKDEP} ${CPPFLAGS} ${SRCS} > .depend
-       @sed s/\\\.o/\\\.so/ < .depend > .depend.tmp
-       @sed -e '/^# DO NOT DELETE THIS LINE/,$$d' <Makefile >Makefile.depend
-       @echo '# DO NOT DELETE THIS LINE!!!' >>Makefile.depend
-       @echo '# make depend needs it.' >>Makefile.depend
-       @cat .depend.tmp >>Makefile.depend
-       @mv Makefile.depend Makefile
-       @rm -f .depend.tmp .depend
-
-clean:
-       ${RM} -f *.so *~ 
-
-distclean: clean
-       ${RM} -f Makefile
-
diff --git a/unsupported/m_clearchan.c b/unsupported/m_clearchan.c
deleted file mode 100644 (file)
index 70c583d..0000000
+++ /dev/null
@@ -1,154 +0,0 @@
-/*
- *   IRC - Internet Relay Chat, contrib/m_clearchan.c
- *   Copyright (C) 2002 Hybrid Development Team
- *   Copyright (C) 2004 ircd-ratbox Development Team
- *
- *   This program is free software; you can redistribute it and/or modify
- *   it under the terms of the GNU General Public License as published by
- *   the Free Software Foundation; either version 1, or (at your option)
- *   any later version.
- *
- *   This program is distributed in the hope that it will be useful,
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *   GNU General Public License for more details.
- *
- *   You should have received a copy of the GNU General Public License
- *   along with this program; if not, write to the Free Software
- *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- *   $Id: m_clearchan.c 3161 2007-01-25 07:23:01Z nenolod $
- */
-#include "stdinc.h"
-#include "channel.h"
-#include "client.h"
-#include "hash.h"
-#include "match.h"
-#include "ircd.h"
-#include "numeric.h"
-#include "s_user.h"
-#include "s_conf.h"
-#include "s_newconf.h"
-#include "send.h"
-#include "msg.h"
-#include "parse.h"
-#include "modules.h"
-#include "packet.h"
-
-static int mo_clearchan(struct Client *client_p, struct Client *source_p,
-                       int parc, const char *parv[]);
-
-struct Message clearchan_msgtab = {
-       "CLEARCHAN", 0, 0, 0, MFLG_SLOW,
-       {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_clearchan, 2}}
-};
-
-mapi_clist_av1 clearchan_clist[] = { &clearchan_msgtab, NULL };
-
-DECLARE_MODULE_AV1(clearchan, NULL, NULL, clearchan_clist, NULL, NULL, "$Revision: 3161 $");
-
-/*
-** mo_clearchan
-**      parv[1] = channel
-*/
-static int
-mo_clearchan(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
-{
-       struct Channel *chptr;
-       struct membership *msptr;
-       struct Client *target_p;
-       rb_dlink_node *ptr;
-       rb_dlink_node *next_ptr;
-
-       /* admins only */
-       if(!IsOperAdmin(source_p))
-       {
-               sendto_one_notice(source_p, ":You have no A flag");
-               return 0;
-       }
-
-
-       if((chptr = find_channel(parv[1])) == NULL)
-       {
-               sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
-                                  form_str(ERR_NOSUCHCHANNEL), parv[1]);
-               return 0;
-       }
-
-       if(IsMember(source_p, chptr))
-       {
-               sendto_one_notice(source_p, ":*** Please part %s before using CLEARCHAN", parv[1]);
-               return 0;
-       }
-
-       /* quickly make everyone a peon.. */
-       RB_DLINK_FOREACH(ptr, chptr->members.head)
-       {
-               msptr = ptr->data;
-               msptr->flags &= ~CHFL_CHANOP | CHFL_VOICE;
-       }
-
-       sendto_wallops_flags(UMODE_WALLOP, &me,
-                            "CLEARCHAN called for [%s] by %s!%s@%s",
-                            parv[1], source_p->name, source_p->username, source_p->host);
-       ilog(L_MAIN, "CLEARCHAN called for [%s] by %s!%s@%s",
-            parv[1], source_p->name, source_p->username, source_p->host);
-
-       if(*chptr->chname != '&')
-       {
-               sendto_server(NULL, NULL, NOCAPS, NOCAPS,
-                             ":%s WALLOPS :CLEARCHAN called for [%s] by %s!%s@%s",
-                             me.name, parv[1], source_p->name, source_p->username, source_p->host);
-
-               /* SJOIN the user to give them ops, and lock the channel */
-               sendto_server(client_p, chptr, NOCAPS, NOCAPS,
-                             ":%s SJOIN %ld %s +ntsi :@%s",
-                             me.name, (long) (chptr->channelts - 1),
-                             chptr->chname, source_p->name);
-       }
-
-       sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN %s",
-                            source_p->name, source_p->username, source_p->host, chptr->chname);
-       sendto_channel_local(ALL_MEMBERS, chptr, ":%s MODE %s +o %s",
-                            me.name, chptr->chname, source_p->name);
-
-       add_user_to_channel(chptr, source_p, CHFL_CHANOP);
-
-       /* Take the TS down by 1, so we don't see the channel taken over
-        * again. */
-       if(chptr->channelts)
-               chptr->channelts--;
-
-       chptr->mode.mode = MODE_SECRET | MODE_TOPICLIMIT | MODE_INVITEONLY | MODE_NOPRIVMSGS;
-       chptr->mode.key[0] = '\0';
-
-       RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->members.head)
-       {
-               msptr = ptr->data;
-               target_p = msptr->client_p;
-
-               /* skip the person we just added.. */
-               if(is_chanop(msptr))
-                       continue;
-
-               sendto_channel_local(ALL_MEMBERS, chptr,
-                                    ":%s KICK %s %s :CLEARCHAN",
-                                    source_p->name, chptr->chname, target_p->name);
-
-               if(*chptr->chname != '&')
-                       sendto_server(NULL, chptr, NOCAPS, NOCAPS,
-                                     ":%s KICK %s %s :CLEARCHAN",
-                                     source_p->name, chptr->chname, target_p->name);
-
-               remove_user_from_channel(msptr);
-       }
-
-       /* Join the user themselves to the channel down here, so they dont see a nicklist 
-        * or people being kicked */
-       sendto_one(source_p, ":%s!%s@%s JOIN %s",
-                  source_p->name, source_p->username, source_p->host, chptr->chname);
-
-       channel_member_names(chptr, source_p, 1);
-
-       return 0;
-}
diff --git a/unsupported/m_force.c b/unsupported/m_force.c
deleted file mode 100644 (file)
index 4a621f4..0000000
+++ /dev/null
@@ -1,291 +0,0 @@
-/* contrib/m_force.c
- * Copyright (C) 1996-2002 Hybrid Development Team
- * Copyright (C) 2004 ircd-ratbox Development Team
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *  1.Redistributions of source code must retain the above copyright notice,
- *    this list of conditions and the following disclaimer.
- *  2.Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *  3.The name of the author may not be used to endorse or promote products
- *    derived from this software without specific prior written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
- *  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- *  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- *  DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
- *  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- *  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- *  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- *  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- *  STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
- *  IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- *  POSSIBILITY OF SUCH DAMAGE.
- *
- * $Id: m_force.c 3297 2007-03-28 14:49:48Z jilles $
- */
-
-#include "stdinc.h"
-#include "channel.h"
-#include "class.h"
-#include "client.h"
-#include "common.h"
-#include "match.h"
-#include "ircd.h"
-#include "hostmask.h"
-#include "numeric.h"
-#include "s_conf.h"
-#include "s_newconf.h"
-#include "logger.h"
-#include "send.h"
-#include "hash.h"
-#include "s_serv.h"
-#include "msg.h"
-#include "parse.h"
-#include "modules.h"
-
-static int mo_forcejoin(struct Client *client_p, struct Client *source_p,
-                       int parc, const char *parv[]);
-static int mo_forcepart(struct Client *client_p, struct Client *source_p,
-                       int parc, const char *parv[]);
-
-struct Message forcejoin_msgtab = {
-       "FORCEJOIN", 0, 0, 0, MFLG_SLOW,
-       {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_forcejoin, 3}}
-};
-
-struct Message forcepart_msgtab = {
-       "FORCEPART", 0, 0, 0, MFLG_SLOW,
-       {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_forcepart, 3}}
-};
-
-mapi_clist_av1 force_clist[] = { &forcejoin_msgtab, &forcepart_msgtab, NULL };
-
-DECLARE_MODULE_AV1(force, NULL, NULL, force_clist, NULL, NULL, "$Revision: 3297 $");
-
-/*
- * m_forcejoin
- *      parv[1] = user to force
- *      parv[2] = channel to force them into
- */
-static int
-mo_forcejoin(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
-{
-       struct Client *target_p;
-       struct Channel *chptr;
-       int type;
-       char mode;
-       char sjmode;
-       char *newch;
-
-       if(!IsOperAdmin(source_p))
-       {
-               sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "admin");
-               return 0;
-       }
-
-       if((hunt_server(client_p, source_p, ":%s FORCEJOIN %s %s", 1, parc, parv)) != HUNTED_ISME)
-               return 0;
-
-       /* if target_p is not existant, print message
-        * to source_p and bail - scuzzy
-        */
-       if((target_p = find_client(parv[1])) == NULL)
-       {
-               sendto_one(source_p, form_str(ERR_NOSUCHNICK), me.name, source_p->name, parv[1]);
-               return 0;
-       }
-
-       if(!IsPerson(target_p))
-               return 0;
-
-       sendto_wallops_flags(UMODE_WALLOP, &me,
-                            "FORCEJOIN called for %s %s by %s!%s@%s",
-                            parv[1], parv[2], source_p->name, source_p->username, source_p->host);
-       ilog(L_MAIN, "FORCEJOIN called for %s %s by %s!%s@%s",
-            parv[1], parv[2], source_p->name, source_p->username, source_p->host);
-       sendto_server(NULL, NULL, NOCAPS, NOCAPS,
-                       ":%s WALLOPS :FORCEJOIN called for %s %s by %s!%s@%s",
-                       me.name, parv[1], parv[2],
-                       source_p->name, source_p->username, source_p->host);
-
-       /* select our modes from parv[2] if they exist... (chanop) */
-       if(*parv[2] == '@')
-       {
-               type = CHFL_CHANOP;
-               mode = 'o';
-               sjmode = '@';
-       }
-       else if(*parv[2] == '+')
-       {
-               type = CHFL_VOICE;
-               mode = 'v';
-               sjmode = '+';
-       }
-       else
-       {
-               type = CHFL_PEON;
-               mode = sjmode = '\0';
-       }
-
-       if(mode != '\0')
-               parv[2]++;
-
-       if((chptr = find_channel(parv[2])) != NULL)
-       {
-               if(IsMember(target_p, chptr))
-               {
-                       /* debugging is fun... */
-                       sendto_one_notice(source_p, ":*** Notice -- %s is already in %s",
-                                target_p->name, chptr->chname);
-                       return 0;
-               }
-
-               add_user_to_channel(chptr, target_p, type);
-
-               sendto_server(target_p, chptr, NOCAPS, NOCAPS,
-                             ":%s SJOIN %ld %s + :%c%s",
-                             me.name, (long) chptr->channelts,
-                             chptr->chname, type ? sjmode : ' ', target_p->name);
-
-               sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN :%s",
-                                    target_p->name, target_p->username,
-                                    target_p->host, chptr->chname);
-
-               if(type)
-                       sendto_channel_local(ALL_MEMBERS, chptr, ":%s MODE %s +%c %s",
-                                            me.name, chptr->chname, mode, target_p->name);
-
-               if(chptr->topic != NULL)
-               {
-                       sendto_one(target_p, form_str(RPL_TOPIC), me.name,
-                                  target_p->name, chptr->chname, chptr->topic);
-                       sendto_one(target_p, form_str(RPL_TOPICWHOTIME),
-                                  me.name, source_p->name, chptr->chname,
-                                  chptr->topic_info, chptr->topic_time);
-               }
-
-               channel_member_names(chptr, target_p, 1);
-       }
-       else
-       {
-               newch = LOCAL_COPY(parv[2]);
-               if(!check_channel_name(newch))
-               {
-                       sendto_one(source_p, form_str(ERR_BADCHANNAME), me.name,
-                                  source_p->name, (unsigned char *) newch);
-                       return 0;
-               }
-
-               /* channel name must begin with & or # */
-               if(!IsChannelName(newch))
-               {
-                       sendto_one(source_p, form_str(ERR_BADCHANNAME), me.name,
-                                  source_p->name, (unsigned char *) newch);
-                       return 0;
-               }
-
-               /* newch can't be longer than CHANNELLEN */
-               if(strlen(newch) > CHANNELLEN)
-               {
-                       sendto_one_notice(source_p, ":Channel name is too long");
-                       return 0;
-               }
-
-               chptr = get_or_create_channel(target_p, newch, NULL);
-               add_user_to_channel(chptr, target_p, CHFL_CHANOP);
-
-               /* send out a join, make target_p join chptr */
-               sendto_server(target_p, chptr, NOCAPS, NOCAPS,
-                             ":%s SJOIN %ld %s +nt :@%s", me.name,
-                             (long) chptr->channelts, chptr->chname, target_p->name);
-
-               sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s JOIN :%s",
-                                    target_p->name, target_p->username,
-                                    target_p->host, chptr->chname);
-
-               chptr->mode.mode |= MODE_TOPICLIMIT;
-               chptr->mode.mode |= MODE_NOPRIVMSGS;
-
-               sendto_channel_local(ALL_MEMBERS, chptr, ":%s MODE %s +nt", me.name, chptr->chname);
-
-               target_p->localClient->last_join_time = rb_current_time();
-               channel_member_names(chptr, target_p, 1);
-
-               /* we do this to let the oper know that a channel was created, this will be
-                * seen from the server handling the command instead of the server that
-                * the oper is on.
-                */
-               sendto_one_notice(source_p, ":*** Notice -- Creating channel %s", chptr->chname);
-       }
-       return 0;
-}
-
-
-static int
-mo_forcepart(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
-{
-       struct Client *target_p;
-       struct Channel *chptr;
-       struct membership *msptr;
-
-       if(!IsOperAdmin(source_p))
-       {
-               sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "admin");
-               return 0;
-       }
-
-       if((hunt_server(client_p, source_p, ":%s FORCEPART %s %s", 1, parc, parv)) != HUNTED_ISME)
-               return 0;
-
-       /* if target_p == NULL then let the oper know */
-       if((target_p = find_client(parv[1])) == NULL)
-       {
-               sendto_one(source_p, form_str(ERR_NOSUCHNICK), me.name, source_p->name, parv[1]);
-               return 0;
-       }
-
-       if(!IsClient(target_p))
-               return 0;
-
-       sendto_wallops_flags(UMODE_WALLOP, &me,
-                            "FORCEPART called for %s %s by %s!%s@%s",
-                            parv[1], parv[2], source_p->name, source_p->username, source_p->host);
-       ilog(L_MAIN, "FORCEPART called for %s %s by %s!%s@%s",
-            parv[1], parv[2], source_p->name, source_p->username, source_p->host);
-       sendto_server(NULL, NULL, NOCAPS, NOCAPS,
-                       ":%s WALLOPS :FORCEPART called for %s %s by %s!%s@%s",
-                       me.name, parv[1], parv[2],
-                       source_p->name, source_p->username, source_p->host);
-
-       if((chptr = find_channel(parv[2])) == NULL)
-       {
-               sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
-                                  form_str(ERR_NOSUCHCHANNEL), parv[1]);
-               return 0;
-       }
-
-       if((msptr = find_channel_membership(chptr, target_p)) == NULL)
-       {
-               sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
-                               form_str(ERR_USERNOTINCHANNEL),
-                               parv[1], parv[2]);
-               return 0;
-       }
-
-       sendto_server(target_p, chptr, NOCAPS, NOCAPS,
-                     ":%s PART %s :%s", target_p->name, chptr->chname, target_p->name);
-
-       sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s PART %s :%s",
-                            target_p->name, target_p->username,
-                            target_p->host, chptr->chname, target_p->name);
-
-
-       remove_user_from_channel(msptr);
-
-       return 0;
-}
diff --git a/unsupported/sno_channeljoin.c b/unsupported/sno_channeljoin.c
deleted file mode 100644 (file)
index 9a9831f..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * +j snomask: Channel join notices.
- *    --nenolod
- *
- * To be discussed:
- *    + part notices?
- *
- * $Id: sno_channeljoin.c 3478 2007-05-24 15:10:06Z jilles $
- */
-
-#include "stdinc.h"
-#include "modules.h"
-#include "hook.h"
-#include "client.h"
-#include "ircd.h"
-#include "send.h"
-
-static void
-show_channeljoin(hook_data_channel_activity *info)
-{
-       sendto_realops_snomask(snomask_modes['j'], L_ALL,
-               "%s (%s@%s) has joined channel %s", info->client->name,
-               info->client->username, info->client->host, info->chptr->chname);
-}
-
-mapi_hfn_list_av1 channeljoin_hfnlist[] = {
-        {"channel_join", (hookfn) show_channeljoin},
-        {NULL, NULL}
-};
-
-static int
-init(void)
-{
-       snomask_modes['j'] = find_snomask_slot();
-
-       return 0;
-}
-
-static void
-fini(void)
-{
-       snomask_modes['j'] = 0;
-}
-
-DECLARE_MODULE_AV1(sno_channeljoin, init, fini, NULL, NULL, channeljoin_hfnlist, "$Revision: 3478 $");