├── .cvsignore ├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── .mailmap ├── AUTHORS ├── COPYING ├── ChangeLog.SH ├── ChangeLog.classic ├── Dockerfile ├── FAQ ├── INSTALL ├── Makefile.am ├── Makefile.in ├── README ├── UPGRADE ├── autogen.sh ├── compile ├── config.guess ├── config.sub ├── configure ├── configure.in ├── depcomp ├── docker ├── dockerentrypoint.sh └── x3.conf-dist ├── docs ├── .cvsignore ├── DEFCON ├── access-levels.txt ├── coding-style.txt ├── cookies.txt ├── helpserv.txt ├── ircd-modes.txt └── malloc-compare.txt ├── install-r.sh ├── install-sh ├── languages ├── README.txt ├── de │ ├── README │ ├── chanserv.help │ ├── global.help │ ├── modcmd.help │ ├── nickserv.help │ └── strings.db ├── en │ └── README ├── en_GB │ ├── README │ ├── chanserv.help │ ├── opserv.help │ └── strings.db ├── lang_export.sh └── validate.pl ├── ltmain.sh ├── missing ├── mkinstalldirs ├── patches ├── .cvsignore ├── asuka-sethost.diff ├── helpserv-pgsql.diff ├── helpserv-pgsql.txt ├── log-pgsql.diff ├── log-pgsql.txt ├── ns_reclaim-flag102403.diff ├── srvx-bantypes.diff └── srvx-successor.diff ├── rx ├── .cvsignore ├── COPYING.LIB ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── _rx.h ├── compile ├── depcomp ├── hashrexp.c ├── inst-rxposix.h ├── rx.c ├── rx.h ├── rxall.h ├── rxanal.c ├── rxanal.h ├── rxbasic.c ├── rxbasic.h ├── rxbitset.c ├── rxbitset.h ├── rxcontext.h ├── rxcset.c ├── rxcset.h ├── rxdbug.c ├── rxgnucomp.c ├── rxgnucomp.h ├── rxhash.c ├── rxhash.h ├── rxnfa.c ├── rxnfa.h ├── rxnode.c ├── rxnode.h ├── rxposix.c ├── rxposix.h ├── rxproto.h ├── rxsimp.c ├── rxsimp.h ├── rxspencer.c ├── rxspencer.h ├── rxstr.c ├── rxstr.h ├── rxsuper.c ├── rxsuper.h ├── rxunfa.c └── rxunfa.h ├── sockcheck.conf.example ├── src ├── .cvsignore ├── Makefile.am ├── Makefile.in ├── alloc-slab.c ├── alloc-x3.c ├── base64.c ├── base64.h ├── chanserv.c ├── chanserv.h ├── chanserv.help ├── checkdb.c ├── common.h ├── compat.c ├── compat.h ├── conf.c ├── conf.h ├── config.h.in ├── dict-splay.c ├── dict.h ├── eventhooks.c ├── eventhooks.h ├── getopt.c ├── getopt.h ├── getopt1.c ├── gline.c ├── gline.h ├── global.c ├── global.h ├── global.help ├── globtest.c ├── hash.c ├── hash.h ├── heap.c ├── heap.h ├── helpfile.c ├── helpfile.h ├── ioset-epoll.c ├── ioset-impl.h ├── ioset-kevent.c ├── ioset-select.c ├── ioset.c ├── ioset.h ├── log.c ├── log.h ├── mail-common.c ├── mail-sendmail.c ├── mail-smtp.c ├── mail.h ├── mail.help ├── main-common.c ├── main.c ├── math.c ├── md5.c ├── md5.h ├── mod-blacklist.c ├── mod-helpserv.c ├── mod-helpserv.help ├── mod-memoserv.c ├── mod-memoserv.help ├── mod-python.c ├── mod-python.help ├── mod-qserver.c ├── mod-qserver.help ├── mod-snoop.c ├── mod-snoop.help ├── mod-sockcheck.c ├── mod-sockcheck.help ├── mod-track.c ├── mod-webtv.c ├── mod-webtv.help ├── modcmd.c ├── modcmd.h ├── modcmd.help ├── modpython.py ├── modules.c ├── modules.h ├── nickserv.c ├── nickserv.h ├── nickserv.help ├── opserv.c ├── opserv.h ├── opserv.help ├── plugins │ ├── README │ ├── __init__.py │ ├── annoy │ │ ├── __init__.py │ │ └── plugin.py │ └── hangman │ │ ├── __init__.py │ │ └── plugin.py ├── policer.c ├── policer.h ├── proto-common.c ├── proto-p10.c ├── proto.h ├── recdb.c ├── recdb.h ├── sar.c ├── sar.h ├── saxdb.c ├── saxdb.h ├── saxdb.help ├── sendmail.help ├── shun.c ├── shun.h ├── slab-read.c ├── spamserv.c ├── spamserv.h ├── spamserv.help ├── stamp-h.in ├── stamp-h1.in ├── timeq.c ├── timeq.h ├── tools.c ├── version.c.SH ├── version.h ├── x3ldap.c └── x3ldap.h ├── stamp-h2.in ├── tests ├── .cvsignore ├── coverage-2.cmd ├── coverage.cmd ├── coverage.txt ├── nickserv.cmd ├── p10.cmd ├── srvx.conf ├── test-driver.pl └── test.cmd ├── tools ├── core_install.sh ├── coredumper.tar.gz ├── db.php ├── ldap │ ├── inetorganon.schema │ └── ldap_convert.php ├── mambo_srvx2_link.tgz ├── mrsnoopy.pl ├── tre.tar.gz └── tre_install.sh └── x3.conf.example /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/.cvsignore -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/.mailmap -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog.SH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/ChangeLog.SH -------------------------------------------------------------------------------- /ChangeLog.classic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/ChangeLog.classic -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/Dockerfile -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/FAQ -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/README -------------------------------------------------------------------------------- /UPGRADE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/UPGRADE -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/autogen.sh -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/configure -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/configure.in -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/depcomp -------------------------------------------------------------------------------- /docker/dockerentrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docker/dockerentrypoint.sh -------------------------------------------------------------------------------- /docker/x3.conf-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docker/x3.conf-dist -------------------------------------------------------------------------------- /docs/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docs/.cvsignore -------------------------------------------------------------------------------- /docs/DEFCON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docs/DEFCON -------------------------------------------------------------------------------- /docs/access-levels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docs/access-levels.txt -------------------------------------------------------------------------------- /docs/coding-style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docs/coding-style.txt -------------------------------------------------------------------------------- /docs/cookies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docs/cookies.txt -------------------------------------------------------------------------------- /docs/helpserv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docs/helpserv.txt -------------------------------------------------------------------------------- /docs/ircd-modes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docs/ircd-modes.txt -------------------------------------------------------------------------------- /docs/malloc-compare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/docs/malloc-compare.txt -------------------------------------------------------------------------------- /install-r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/install-r.sh -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/install-sh -------------------------------------------------------------------------------- /languages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/README.txt -------------------------------------------------------------------------------- /languages/de/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/de/README -------------------------------------------------------------------------------- /languages/de/chanserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/de/chanserv.help -------------------------------------------------------------------------------- /languages/de/global.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/de/global.help -------------------------------------------------------------------------------- /languages/de/modcmd.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/de/modcmd.help -------------------------------------------------------------------------------- /languages/de/nickserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/de/nickserv.help -------------------------------------------------------------------------------- /languages/de/strings.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/de/strings.db -------------------------------------------------------------------------------- /languages/en/README: -------------------------------------------------------------------------------- 1 | This directory intentionally left blank. 2 | -------------------------------------------------------------------------------- /languages/en_GB/README: -------------------------------------------------------------------------------- 1 | This translation was written by Simon 'Byte' Arlott. 2 | -------------------------------------------------------------------------------- /languages/en_GB/chanserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/en_GB/chanserv.help -------------------------------------------------------------------------------- /languages/en_GB/opserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/en_GB/opserv.help -------------------------------------------------------------------------------- /languages/en_GB/strings.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/en_GB/strings.db -------------------------------------------------------------------------------- /languages/lang_export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/lang_export.sh -------------------------------------------------------------------------------- /languages/validate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/languages/validate.pl -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/ltmain.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/missing -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /patches/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/.cvsignore -------------------------------------------------------------------------------- /patches/asuka-sethost.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/asuka-sethost.diff -------------------------------------------------------------------------------- /patches/helpserv-pgsql.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/helpserv-pgsql.diff -------------------------------------------------------------------------------- /patches/helpserv-pgsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/helpserv-pgsql.txt -------------------------------------------------------------------------------- /patches/log-pgsql.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/log-pgsql.diff -------------------------------------------------------------------------------- /patches/log-pgsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/log-pgsql.txt -------------------------------------------------------------------------------- /patches/ns_reclaim-flag102403.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/ns_reclaim-flag102403.diff -------------------------------------------------------------------------------- /patches/srvx-bantypes.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/srvx-bantypes.diff -------------------------------------------------------------------------------- /patches/srvx-successor.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/patches/srvx-successor.diff -------------------------------------------------------------------------------- /rx/.cvsignore: -------------------------------------------------------------------------------- 1 | .arch-ids 2 | Makefile.in 3 | -------------------------------------------------------------------------------- /rx/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/COPYING.LIB -------------------------------------------------------------------------------- /rx/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/ChangeLog -------------------------------------------------------------------------------- /rx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/Makefile.am -------------------------------------------------------------------------------- /rx/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/Makefile.in -------------------------------------------------------------------------------- /rx/_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/_rx.h -------------------------------------------------------------------------------- /rx/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/compile -------------------------------------------------------------------------------- /rx/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/depcomp -------------------------------------------------------------------------------- /rx/hashrexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/hashrexp.c -------------------------------------------------------------------------------- /rx/inst-rxposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/inst-rxposix.h -------------------------------------------------------------------------------- /rx/rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rx.c -------------------------------------------------------------------------------- /rx/rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rx.h -------------------------------------------------------------------------------- /rx/rxall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxall.h -------------------------------------------------------------------------------- /rx/rxanal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxanal.c -------------------------------------------------------------------------------- /rx/rxanal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxanal.h -------------------------------------------------------------------------------- /rx/rxbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxbasic.c -------------------------------------------------------------------------------- /rx/rxbasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxbasic.h -------------------------------------------------------------------------------- /rx/rxbitset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxbitset.c -------------------------------------------------------------------------------- /rx/rxbitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxbitset.h -------------------------------------------------------------------------------- /rx/rxcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxcontext.h -------------------------------------------------------------------------------- /rx/rxcset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxcset.c -------------------------------------------------------------------------------- /rx/rxcset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxcset.h -------------------------------------------------------------------------------- /rx/rxdbug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxdbug.c -------------------------------------------------------------------------------- /rx/rxgnucomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxgnucomp.c -------------------------------------------------------------------------------- /rx/rxgnucomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxgnucomp.h -------------------------------------------------------------------------------- /rx/rxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxhash.c -------------------------------------------------------------------------------- /rx/rxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxhash.h -------------------------------------------------------------------------------- /rx/rxnfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxnfa.c -------------------------------------------------------------------------------- /rx/rxnfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxnfa.h -------------------------------------------------------------------------------- /rx/rxnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxnode.c -------------------------------------------------------------------------------- /rx/rxnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxnode.h -------------------------------------------------------------------------------- /rx/rxposix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxposix.c -------------------------------------------------------------------------------- /rx/rxposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxposix.h -------------------------------------------------------------------------------- /rx/rxproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxproto.h -------------------------------------------------------------------------------- /rx/rxsimp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxsimp.c -------------------------------------------------------------------------------- /rx/rxsimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxsimp.h -------------------------------------------------------------------------------- /rx/rxspencer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxspencer.c -------------------------------------------------------------------------------- /rx/rxspencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxspencer.h -------------------------------------------------------------------------------- /rx/rxstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxstr.c -------------------------------------------------------------------------------- /rx/rxstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxstr.h -------------------------------------------------------------------------------- /rx/rxsuper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxsuper.c -------------------------------------------------------------------------------- /rx/rxsuper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxsuper.h -------------------------------------------------------------------------------- /rx/rxunfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxunfa.c -------------------------------------------------------------------------------- /rx/rxunfa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/rx/rxunfa.h -------------------------------------------------------------------------------- /sockcheck.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/sockcheck.conf.example -------------------------------------------------------------------------------- /src/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/.cvsignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/alloc-slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/alloc-slab.c -------------------------------------------------------------------------------- /src/alloc-x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/alloc-x3.c -------------------------------------------------------------------------------- /src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/base64.c -------------------------------------------------------------------------------- /src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/base64.h -------------------------------------------------------------------------------- /src/chanserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/chanserv.c -------------------------------------------------------------------------------- /src/chanserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/chanserv.h -------------------------------------------------------------------------------- /src/chanserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/chanserv.help -------------------------------------------------------------------------------- /src/checkdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/checkdb.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/common.h -------------------------------------------------------------------------------- /src/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/compat.c -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/conf.c -------------------------------------------------------------------------------- /src/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/conf.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/dict-splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/dict-splay.c -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/eventhooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/eventhooks.c -------------------------------------------------------------------------------- /src/eventhooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/eventhooks.h -------------------------------------------------------------------------------- /src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/getopt.c -------------------------------------------------------------------------------- /src/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/getopt.h -------------------------------------------------------------------------------- /src/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/getopt1.c -------------------------------------------------------------------------------- /src/gline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/gline.c -------------------------------------------------------------------------------- /src/gline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/gline.h -------------------------------------------------------------------------------- /src/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/global.c -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/global.h -------------------------------------------------------------------------------- /src/global.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/global.help -------------------------------------------------------------------------------- /src/globtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/globtest.c -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/heap.c -------------------------------------------------------------------------------- /src/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/heap.h -------------------------------------------------------------------------------- /src/helpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/helpfile.c -------------------------------------------------------------------------------- /src/helpfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/helpfile.h -------------------------------------------------------------------------------- /src/ioset-epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/ioset-epoll.c -------------------------------------------------------------------------------- /src/ioset-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/ioset-impl.h -------------------------------------------------------------------------------- /src/ioset-kevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/ioset-kevent.c -------------------------------------------------------------------------------- /src/ioset-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/ioset-select.c -------------------------------------------------------------------------------- /src/ioset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/ioset.c -------------------------------------------------------------------------------- /src/ioset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/ioset.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/log.h -------------------------------------------------------------------------------- /src/mail-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mail-common.c -------------------------------------------------------------------------------- /src/mail-sendmail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mail-sendmail.c -------------------------------------------------------------------------------- /src/mail-smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mail-smtp.c -------------------------------------------------------------------------------- /src/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mail.h -------------------------------------------------------------------------------- /src/mail.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mail.help -------------------------------------------------------------------------------- /src/main-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/main-common.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/main.c -------------------------------------------------------------------------------- /src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/math.c -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/mod-blacklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-blacklist.c -------------------------------------------------------------------------------- /src/mod-helpserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-helpserv.c -------------------------------------------------------------------------------- /src/mod-helpserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-helpserv.help -------------------------------------------------------------------------------- /src/mod-memoserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-memoserv.c -------------------------------------------------------------------------------- /src/mod-memoserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-memoserv.help -------------------------------------------------------------------------------- /src/mod-python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-python.c -------------------------------------------------------------------------------- /src/mod-python.help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod-qserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-qserver.c -------------------------------------------------------------------------------- /src/mod-qserver.help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod-snoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-snoop.c -------------------------------------------------------------------------------- /src/mod-snoop.help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod-sockcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-sockcheck.c -------------------------------------------------------------------------------- /src/mod-sockcheck.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-sockcheck.help -------------------------------------------------------------------------------- /src/mod-track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-track.c -------------------------------------------------------------------------------- /src/mod-webtv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-webtv.c -------------------------------------------------------------------------------- /src/mod-webtv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/mod-webtv.help -------------------------------------------------------------------------------- /src/modcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/modcmd.c -------------------------------------------------------------------------------- /src/modcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/modcmd.h -------------------------------------------------------------------------------- /src/modcmd.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/modcmd.help -------------------------------------------------------------------------------- /src/modpython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/modpython.py -------------------------------------------------------------------------------- /src/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/modules.c -------------------------------------------------------------------------------- /src/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/modules.h -------------------------------------------------------------------------------- /src/nickserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/nickserv.c -------------------------------------------------------------------------------- /src/nickserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/nickserv.h -------------------------------------------------------------------------------- /src/nickserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/nickserv.help -------------------------------------------------------------------------------- /src/opserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/opserv.c -------------------------------------------------------------------------------- /src/opserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/opserv.h -------------------------------------------------------------------------------- /src/opserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/opserv.help -------------------------------------------------------------------------------- /src/plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/plugins/README -------------------------------------------------------------------------------- /src/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/plugins/__init__.py -------------------------------------------------------------------------------- /src/plugins/annoy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/plugins/annoy/__init__.py -------------------------------------------------------------------------------- /src/plugins/annoy/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/plugins/annoy/plugin.py -------------------------------------------------------------------------------- /src/plugins/hangman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/plugins/hangman/__init__.py -------------------------------------------------------------------------------- /src/plugins/hangman/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/plugins/hangman/plugin.py -------------------------------------------------------------------------------- /src/policer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/policer.c -------------------------------------------------------------------------------- /src/policer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/policer.h -------------------------------------------------------------------------------- /src/proto-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/proto-common.c -------------------------------------------------------------------------------- /src/proto-p10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/proto-p10.c -------------------------------------------------------------------------------- /src/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/proto.h -------------------------------------------------------------------------------- /src/recdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/recdb.c -------------------------------------------------------------------------------- /src/recdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/recdb.h -------------------------------------------------------------------------------- /src/sar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/sar.c -------------------------------------------------------------------------------- /src/sar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/sar.h -------------------------------------------------------------------------------- /src/saxdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/saxdb.c -------------------------------------------------------------------------------- /src/saxdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/saxdb.h -------------------------------------------------------------------------------- /src/saxdb.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/saxdb.help -------------------------------------------------------------------------------- /src/sendmail.help: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/shun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/shun.c -------------------------------------------------------------------------------- /src/shun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/shun.h -------------------------------------------------------------------------------- /src/slab-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/slab-read.c -------------------------------------------------------------------------------- /src/spamserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/spamserv.c -------------------------------------------------------------------------------- /src/spamserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/spamserv.h -------------------------------------------------------------------------------- /src/spamserv.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/spamserv.help -------------------------------------------------------------------------------- /src/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/stamp-h1.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/timeq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/timeq.c -------------------------------------------------------------------------------- /src/timeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/timeq.h -------------------------------------------------------------------------------- /src/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/tools.c -------------------------------------------------------------------------------- /src/version.c.SH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/version.c.SH -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/version.h -------------------------------------------------------------------------------- /src/x3ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/x3ldap.c -------------------------------------------------------------------------------- /src/x3ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/src/x3ldap.h -------------------------------------------------------------------------------- /stamp-h2.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/.cvsignore -------------------------------------------------------------------------------- /tests/coverage-2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/coverage-2.cmd -------------------------------------------------------------------------------- /tests/coverage.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/coverage.cmd -------------------------------------------------------------------------------- /tests/coverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/coverage.txt -------------------------------------------------------------------------------- /tests/nickserv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/nickserv.cmd -------------------------------------------------------------------------------- /tests/p10.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/p10.cmd -------------------------------------------------------------------------------- /tests/srvx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/srvx.conf -------------------------------------------------------------------------------- /tests/test-driver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/test-driver.pl -------------------------------------------------------------------------------- /tests/test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tests/test.cmd -------------------------------------------------------------------------------- /tools/core_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/core_install.sh -------------------------------------------------------------------------------- /tools/coredumper.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/coredumper.tar.gz -------------------------------------------------------------------------------- /tools/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/db.php -------------------------------------------------------------------------------- /tools/ldap/inetorganon.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/ldap/inetorganon.schema -------------------------------------------------------------------------------- /tools/ldap/ldap_convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/ldap/ldap_convert.php -------------------------------------------------------------------------------- /tools/mambo_srvx2_link.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/mambo_srvx2_link.tgz -------------------------------------------------------------------------------- /tools/mrsnoopy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/mrsnoopy.pl -------------------------------------------------------------------------------- /tools/tre.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/tre.tar.gz -------------------------------------------------------------------------------- /tools/tre_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/tools/tre_install.sh -------------------------------------------------------------------------------- /x3.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilnet/x3/HEAD/x3.conf.example --------------------------------------------------------------------------------