├── .gitignore ├── .travis.yml ├── .vimrc ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.md ├── TODO ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── debian ├── changelog ├── compat ├── control ├── copyright ├── oftc-ircservices.init ├── oftc-ircservices.postinst ├── oftc-ircservices.postrm ├── patches │ ├── debian-config │ └── series └── rules ├── etc ├── Makefile.am ├── bopm.sample.yaml ├── ctcpserv.sample.yaml ├── example.conf └── moran.sample.yaml ├── include ├── Makefile.am ├── akick.h ├── akill.h ├── chanaccess.h ├── channel.h ├── channel_mode.h ├── chanserv.h ├── client.h ├── conf.h ├── conf │ ├── Makefile.am │ ├── conf.h │ ├── connect.h │ ├── database.h │ ├── logging.h │ ├── mail.h │ ├── manager.h │ ├── modules.h │ ├── service.h │ └── servicesinfo.h ├── connection.h ├── crypt.h ├── dbchannel.h ├── dbm.h ├── dbmail.h ├── defines.h ├── events.h ├── floodserv.h ├── group.h ├── groupaccess.h ├── groupserv.h ├── hash.h ├── hostmask.h ├── interface.h ├── jupe.h ├── kill.h ├── language.h ├── modules.h ├── mqueue.h ├── msg.h ├── nickname.h ├── nickserv.h ├── operserv.h ├── packet.h ├── parse.h ├── python_module.h ├── ruby_module.h ├── send.h ├── servicemask.h ├── services.h ├── stdinc.h └── tor.h ├── languages ├── Makefile.am ├── bopm.en.lang ├── chanserv.en.lang ├── ctcpserv.en.lang ├── floodserv.en.lang ├── ganneffserv.en.lang ├── groupserv.en.lang ├── jupeserv.en.lang ├── langcheck.c ├── moranserv.en.lang ├── nickserv.en.lang ├── operserv.en.lang ├── rubyserv.en.lang └── services.en.lang ├── libio ├── Makefile.am ├── comm │ ├── Makefile.am │ ├── comm.c │ ├── comm.h │ ├── devpoll.c │ ├── epoll.c │ ├── fdlist.c │ ├── fdlist.h │ ├── fileio.c │ ├── fileio.h │ ├── kqueue.c │ ├── poll.c │ ├── rlimits.h │ ├── select.c │ ├── sigio.c │ └── win32.c ├── irc_libio.h ├── libioinc.h ├── mem │ ├── Makefile.am │ ├── balloc.c │ ├── balloc.h │ ├── dbuf.c │ ├── dbuf.h │ ├── dynlink.c │ ├── dynlink.h │ ├── memory.c │ └── memory.h ├── misc │ ├── Makefile.am │ ├── crypt.c │ ├── event.c │ ├── event.h │ ├── hook.c │ ├── hook.h │ ├── libio_getopt.c │ ├── libio_getopt.h │ ├── list.c │ ├── list.h │ ├── log.c │ ├── log.h │ ├── misc.c │ └── misc.h ├── net │ ├── Makefile.am │ ├── inet_misc.c │ ├── inet_misc.h │ ├── irc_getaddrinfo.c │ ├── irc_getaddrinfo.h │ ├── irc_getnameinfo.c │ ├── irc_getnameinfo.h │ ├── res.c │ ├── res.h │ ├── reslib.c │ └── reslib.h └── string │ ├── AUTHORS │ ├── LICENCE │ ├── Makefile.am │ ├── README │ ├── irc_string.h │ ├── match.c │ ├── pcre.h │ ├── pcre_chartables.c │ ├── pcre_compile.c │ ├── pcre_exec.c │ ├── pcre_fullinfo.c │ ├── pcre_globals.c │ ├── pcre_internal.h │ ├── pcre_study.c │ ├── pcre_tables.c │ ├── pcre_try_flipped.c │ ├── snprintf.c │ ├── sprintf_irc.c │ ├── sprintf_irc.h │ └── string.c ├── modules ├── Bopm.rb ├── CTCPServ.rb ├── FloodServ.rb ├── GanneffServ.rb ├── JupeServ.rb ├── Makefile.am ├── MoranServ.rb ├── PythonServ.py ├── RubyServ.rb ├── ServiceBase.rb ├── XmlRpc.rb ├── chanserv.c ├── floodserv.c ├── groupserv.c ├── irc.c ├── nickserv.c ├── nulldb.c ├── oftc.c ├── operserv.c └── pgsql.c ├── scripts ├── dblink-script.rb ├── migrate-db.rb └── migrate-db.yaml ├── sql ├── Makefile.am ├── chanserv-pgsql.sql ├── common-pgsql.sql ├── ctcpserv-pgsql.sql ├── ganneffserv-pgsql.sql ├── groupserv-pgsql.sql ├── moranserv-pgsql.sql ├── nickserv-pgsql.sql ├── operserv-pgsql.sql └── views-pgsql.sql ├── src ├── Makefile.am ├── akick.c ├── akill.c ├── chanaccess.c ├── channel.c ├── channel_mode.c ├── client.c ├── conf.c ├── conf │ ├── Makefile.am │ ├── conf.c │ ├── connect.c │ ├── database.c │ ├── lexer.l │ ├── logging.c │ ├── mail.c │ ├── modules.c │ ├── parser.y │ ├── service.c │ └── servicesinfo.c ├── connection.c ├── crypt.c ├── dbchannel.c ├── dbm.c ├── dbmail.c ├── event.c ├── group.c ├── groupaccess.c ├── hash.c ├── hostmask.c ├── interface.c ├── jupe.c ├── kill.c ├── language.c ├── m_error.c ├── mqueue.c ├── nickname.c ├── packet.c ├── parse.c ├── python_module │ ├── Makefile.am │ ├── client.c │ ├── libpython_module.h │ ├── python_module.c │ └── servicemodule.c ├── ruby_module │ ├── Makefile.am │ ├── channel.c │ ├── client.c │ ├── db.c │ ├── dbchannel.c │ ├── dbresult.c │ ├── dbrow.c │ ├── libruby_module.h │ ├── nickname.c │ ├── ruby_module.c │ └── servicemodule.c ├── send.c ├── servicemask.c ├── services.c └── tor.c ├── testcases └── nickserv.test.plan └── tools └── release /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- 1 | set sw=2 et 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/TODO -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/oftc-ircservices.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/debian/oftc-ircservices.init -------------------------------------------------------------------------------- /debian/oftc-ircservices.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/debian/oftc-ircservices.postinst -------------------------------------------------------------------------------- /debian/oftc-ircservices.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/debian/oftc-ircservices.postrm -------------------------------------------------------------------------------- /debian/patches/debian-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/debian/patches/debian-config -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | debian-config 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/debian/rules -------------------------------------------------------------------------------- /etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/etc/Makefile.am -------------------------------------------------------------------------------- /etc/bopm.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/etc/bopm.sample.yaml -------------------------------------------------------------------------------- /etc/ctcpserv.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/etc/ctcpserv.sample.yaml -------------------------------------------------------------------------------- /etc/example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/etc/example.conf -------------------------------------------------------------------------------- /etc/moran.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/etc/moran.sample.yaml -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/akick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/akick.h -------------------------------------------------------------------------------- /include/akill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/akill.h -------------------------------------------------------------------------------- /include/chanaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/chanaccess.h -------------------------------------------------------------------------------- /include/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/channel.h -------------------------------------------------------------------------------- /include/channel_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/channel_mode.h -------------------------------------------------------------------------------- /include/chanserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/chanserv.h -------------------------------------------------------------------------------- /include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/client.h -------------------------------------------------------------------------------- /include/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf.h -------------------------------------------------------------------------------- /include/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/Makefile.am -------------------------------------------------------------------------------- /include/conf/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/conf.h -------------------------------------------------------------------------------- /include/conf/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/connect.h -------------------------------------------------------------------------------- /include/conf/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/database.h -------------------------------------------------------------------------------- /include/conf/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/logging.h -------------------------------------------------------------------------------- /include/conf/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/mail.h -------------------------------------------------------------------------------- /include/conf/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/manager.h -------------------------------------------------------------------------------- /include/conf/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/modules.h -------------------------------------------------------------------------------- /include/conf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/service.h -------------------------------------------------------------------------------- /include/conf/servicesinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/conf/servicesinfo.h -------------------------------------------------------------------------------- /include/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/connection.h -------------------------------------------------------------------------------- /include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/crypt.h -------------------------------------------------------------------------------- /include/dbchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/dbchannel.h -------------------------------------------------------------------------------- /include/dbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/dbm.h -------------------------------------------------------------------------------- /include/dbmail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/dbmail.h -------------------------------------------------------------------------------- /include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/defines.h -------------------------------------------------------------------------------- /include/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/events.h -------------------------------------------------------------------------------- /include/floodserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/floodserv.h -------------------------------------------------------------------------------- /include/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/group.h -------------------------------------------------------------------------------- /include/groupaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/groupaccess.h -------------------------------------------------------------------------------- /include/groupserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/groupserv.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/hostmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/hostmask.h -------------------------------------------------------------------------------- /include/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/interface.h -------------------------------------------------------------------------------- /include/jupe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/jupe.h -------------------------------------------------------------------------------- /include/kill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/kill.h -------------------------------------------------------------------------------- /include/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/language.h -------------------------------------------------------------------------------- /include/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/modules.h -------------------------------------------------------------------------------- /include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/mqueue.h -------------------------------------------------------------------------------- /include/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/msg.h -------------------------------------------------------------------------------- /include/nickname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/nickname.h -------------------------------------------------------------------------------- /include/nickserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/nickserv.h -------------------------------------------------------------------------------- /include/operserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/operserv.h -------------------------------------------------------------------------------- /include/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/packet.h -------------------------------------------------------------------------------- /include/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/parse.h -------------------------------------------------------------------------------- /include/python_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/python_module.h -------------------------------------------------------------------------------- /include/ruby_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/ruby_module.h -------------------------------------------------------------------------------- /include/send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/send.h -------------------------------------------------------------------------------- /include/servicemask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/servicemask.h -------------------------------------------------------------------------------- /include/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/services.h -------------------------------------------------------------------------------- /include/stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/stdinc.h -------------------------------------------------------------------------------- /include/tor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/include/tor.h -------------------------------------------------------------------------------- /languages/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/Makefile.am -------------------------------------------------------------------------------- /languages/bopm.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/bopm.en.lang -------------------------------------------------------------------------------- /languages/chanserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/chanserv.en.lang -------------------------------------------------------------------------------- /languages/ctcpserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/ctcpserv.en.lang -------------------------------------------------------------------------------- /languages/floodserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/floodserv.en.lang -------------------------------------------------------------------------------- /languages/ganneffserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/ganneffserv.en.lang -------------------------------------------------------------------------------- /languages/groupserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/groupserv.en.lang -------------------------------------------------------------------------------- /languages/jupeserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/jupeserv.en.lang -------------------------------------------------------------------------------- /languages/langcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/langcheck.c -------------------------------------------------------------------------------- /languages/moranserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/moranserv.en.lang -------------------------------------------------------------------------------- /languages/nickserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/nickserv.en.lang -------------------------------------------------------------------------------- /languages/operserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/operserv.en.lang -------------------------------------------------------------------------------- /languages/rubyserv.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/rubyserv.en.lang -------------------------------------------------------------------------------- /languages/services.en.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/languages/services.en.lang -------------------------------------------------------------------------------- /libio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/Makefile.am -------------------------------------------------------------------------------- /libio/comm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/Makefile.am -------------------------------------------------------------------------------- /libio/comm/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/comm.c -------------------------------------------------------------------------------- /libio/comm/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/comm.h -------------------------------------------------------------------------------- /libio/comm/devpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/devpoll.c -------------------------------------------------------------------------------- /libio/comm/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/epoll.c -------------------------------------------------------------------------------- /libio/comm/fdlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/fdlist.c -------------------------------------------------------------------------------- /libio/comm/fdlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/fdlist.h -------------------------------------------------------------------------------- /libio/comm/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/fileio.c -------------------------------------------------------------------------------- /libio/comm/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/fileio.h -------------------------------------------------------------------------------- /libio/comm/kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/kqueue.c -------------------------------------------------------------------------------- /libio/comm/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/poll.c -------------------------------------------------------------------------------- /libio/comm/rlimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/rlimits.h -------------------------------------------------------------------------------- /libio/comm/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/select.c -------------------------------------------------------------------------------- /libio/comm/sigio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/sigio.c -------------------------------------------------------------------------------- /libio/comm/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/comm/win32.c -------------------------------------------------------------------------------- /libio/irc_libio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/irc_libio.h -------------------------------------------------------------------------------- /libio/libioinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/libioinc.h -------------------------------------------------------------------------------- /libio/mem/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/Makefile.am -------------------------------------------------------------------------------- /libio/mem/balloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/balloc.c -------------------------------------------------------------------------------- /libio/mem/balloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/balloc.h -------------------------------------------------------------------------------- /libio/mem/dbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/dbuf.c -------------------------------------------------------------------------------- /libio/mem/dbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/dbuf.h -------------------------------------------------------------------------------- /libio/mem/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/dynlink.c -------------------------------------------------------------------------------- /libio/mem/dynlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/dynlink.h -------------------------------------------------------------------------------- /libio/mem/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/memory.c -------------------------------------------------------------------------------- /libio/mem/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/mem/memory.h -------------------------------------------------------------------------------- /libio/misc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/Makefile.am -------------------------------------------------------------------------------- /libio/misc/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/crypt.c -------------------------------------------------------------------------------- /libio/misc/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/event.c -------------------------------------------------------------------------------- /libio/misc/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/event.h -------------------------------------------------------------------------------- /libio/misc/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/hook.c -------------------------------------------------------------------------------- /libio/misc/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/hook.h -------------------------------------------------------------------------------- /libio/misc/libio_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/libio_getopt.c -------------------------------------------------------------------------------- /libio/misc/libio_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/libio_getopt.h -------------------------------------------------------------------------------- /libio/misc/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/list.c -------------------------------------------------------------------------------- /libio/misc/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/list.h -------------------------------------------------------------------------------- /libio/misc/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/log.c -------------------------------------------------------------------------------- /libio/misc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/log.h -------------------------------------------------------------------------------- /libio/misc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/misc.c -------------------------------------------------------------------------------- /libio/misc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/misc/misc.h -------------------------------------------------------------------------------- /libio/net/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/Makefile.am -------------------------------------------------------------------------------- /libio/net/inet_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/inet_misc.c -------------------------------------------------------------------------------- /libio/net/inet_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/inet_misc.h -------------------------------------------------------------------------------- /libio/net/irc_getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/irc_getaddrinfo.c -------------------------------------------------------------------------------- /libio/net/irc_getaddrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/irc_getaddrinfo.h -------------------------------------------------------------------------------- /libio/net/irc_getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/irc_getnameinfo.c -------------------------------------------------------------------------------- /libio/net/irc_getnameinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/irc_getnameinfo.h -------------------------------------------------------------------------------- /libio/net/res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/res.c -------------------------------------------------------------------------------- /libio/net/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/res.h -------------------------------------------------------------------------------- /libio/net/reslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/reslib.c -------------------------------------------------------------------------------- /libio/net/reslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/net/reslib.h -------------------------------------------------------------------------------- /libio/string/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/AUTHORS -------------------------------------------------------------------------------- /libio/string/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/LICENCE -------------------------------------------------------------------------------- /libio/string/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/Makefile.am -------------------------------------------------------------------------------- /libio/string/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/README -------------------------------------------------------------------------------- /libio/string/irc_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/irc_string.h -------------------------------------------------------------------------------- /libio/string/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/match.c -------------------------------------------------------------------------------- /libio/string/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre.h -------------------------------------------------------------------------------- /libio/string/pcre_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_chartables.c -------------------------------------------------------------------------------- /libio/string/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_compile.c -------------------------------------------------------------------------------- /libio/string/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_exec.c -------------------------------------------------------------------------------- /libio/string/pcre_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_fullinfo.c -------------------------------------------------------------------------------- /libio/string/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_globals.c -------------------------------------------------------------------------------- /libio/string/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_internal.h -------------------------------------------------------------------------------- /libio/string/pcre_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_study.c -------------------------------------------------------------------------------- /libio/string/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_tables.c -------------------------------------------------------------------------------- /libio/string/pcre_try_flipped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/pcre_try_flipped.c -------------------------------------------------------------------------------- /libio/string/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/snprintf.c -------------------------------------------------------------------------------- /libio/string/sprintf_irc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/sprintf_irc.c -------------------------------------------------------------------------------- /libio/string/sprintf_irc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/sprintf_irc.h -------------------------------------------------------------------------------- /libio/string/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/libio/string/string.c -------------------------------------------------------------------------------- /modules/Bopm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/Bopm.rb -------------------------------------------------------------------------------- /modules/CTCPServ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/CTCPServ.rb -------------------------------------------------------------------------------- /modules/FloodServ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/FloodServ.rb -------------------------------------------------------------------------------- /modules/GanneffServ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/GanneffServ.rb -------------------------------------------------------------------------------- /modules/JupeServ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/JupeServ.rb -------------------------------------------------------------------------------- /modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/Makefile.am -------------------------------------------------------------------------------- /modules/MoranServ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/MoranServ.rb -------------------------------------------------------------------------------- /modules/PythonServ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/PythonServ.py -------------------------------------------------------------------------------- /modules/RubyServ.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/RubyServ.rb -------------------------------------------------------------------------------- /modules/ServiceBase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/ServiceBase.rb -------------------------------------------------------------------------------- /modules/XmlRpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/XmlRpc.rb -------------------------------------------------------------------------------- /modules/chanserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/chanserv.c -------------------------------------------------------------------------------- /modules/floodserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/floodserv.c -------------------------------------------------------------------------------- /modules/groupserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/groupserv.c -------------------------------------------------------------------------------- /modules/irc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/irc.c -------------------------------------------------------------------------------- /modules/nickserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/nickserv.c -------------------------------------------------------------------------------- /modules/nulldb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/nulldb.c -------------------------------------------------------------------------------- /modules/oftc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/oftc.c -------------------------------------------------------------------------------- /modules/operserv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/operserv.c -------------------------------------------------------------------------------- /modules/pgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/modules/pgsql.c -------------------------------------------------------------------------------- /scripts/dblink-script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/scripts/dblink-script.rb -------------------------------------------------------------------------------- /scripts/migrate-db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/scripts/migrate-db.rb -------------------------------------------------------------------------------- /scripts/migrate-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/scripts/migrate-db.yaml -------------------------------------------------------------------------------- /sql/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/Makefile.am -------------------------------------------------------------------------------- /sql/chanserv-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/chanserv-pgsql.sql -------------------------------------------------------------------------------- /sql/common-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/common-pgsql.sql -------------------------------------------------------------------------------- /sql/ctcpserv-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/ctcpserv-pgsql.sql -------------------------------------------------------------------------------- /sql/ganneffserv-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/ganneffserv-pgsql.sql -------------------------------------------------------------------------------- /sql/groupserv-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/groupserv-pgsql.sql -------------------------------------------------------------------------------- /sql/moranserv-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/moranserv-pgsql.sql -------------------------------------------------------------------------------- /sql/nickserv-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/nickserv-pgsql.sql -------------------------------------------------------------------------------- /sql/operserv-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/operserv-pgsql.sql -------------------------------------------------------------------------------- /sql/views-pgsql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/sql/views-pgsql.sql -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/akick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/akick.c -------------------------------------------------------------------------------- /src/akill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/akill.c -------------------------------------------------------------------------------- /src/chanaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/chanaccess.c -------------------------------------------------------------------------------- /src/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/channel.c -------------------------------------------------------------------------------- /src/channel_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/channel_mode.c -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/client.c -------------------------------------------------------------------------------- /src/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf.c -------------------------------------------------------------------------------- /src/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/Makefile.am -------------------------------------------------------------------------------- /src/conf/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/conf.c -------------------------------------------------------------------------------- /src/conf/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/connect.c -------------------------------------------------------------------------------- /src/conf/database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/database.c -------------------------------------------------------------------------------- /src/conf/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/lexer.l -------------------------------------------------------------------------------- /src/conf/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/logging.c -------------------------------------------------------------------------------- /src/conf/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/mail.c -------------------------------------------------------------------------------- /src/conf/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/modules.c -------------------------------------------------------------------------------- /src/conf/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/parser.y -------------------------------------------------------------------------------- /src/conf/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/service.c -------------------------------------------------------------------------------- /src/conf/servicesinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/conf/servicesinfo.c -------------------------------------------------------------------------------- /src/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/connection.c -------------------------------------------------------------------------------- /src/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/crypt.c -------------------------------------------------------------------------------- /src/dbchannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/dbchannel.c -------------------------------------------------------------------------------- /src/dbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/dbm.c -------------------------------------------------------------------------------- /src/dbmail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/dbmail.c -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/event.c -------------------------------------------------------------------------------- /src/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/group.c -------------------------------------------------------------------------------- /src/groupaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/groupaccess.c -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hostmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/hostmask.c -------------------------------------------------------------------------------- /src/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/interface.c -------------------------------------------------------------------------------- /src/jupe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/jupe.c -------------------------------------------------------------------------------- /src/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/kill.c -------------------------------------------------------------------------------- /src/language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/language.c -------------------------------------------------------------------------------- /src/m_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/m_error.c -------------------------------------------------------------------------------- /src/mqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/mqueue.c -------------------------------------------------------------------------------- /src/nickname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/nickname.c -------------------------------------------------------------------------------- /src/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/packet.c -------------------------------------------------------------------------------- /src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/parse.c -------------------------------------------------------------------------------- /src/python_module/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/python_module/Makefile.am -------------------------------------------------------------------------------- /src/python_module/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/python_module/client.c -------------------------------------------------------------------------------- /src/python_module/libpython_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/python_module/libpython_module.h -------------------------------------------------------------------------------- /src/python_module/python_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/python_module/python_module.c -------------------------------------------------------------------------------- /src/python_module/servicemodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/python_module/servicemodule.c -------------------------------------------------------------------------------- /src/ruby_module/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/Makefile.am -------------------------------------------------------------------------------- /src/ruby_module/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/channel.c -------------------------------------------------------------------------------- /src/ruby_module/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/client.c -------------------------------------------------------------------------------- /src/ruby_module/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/db.c -------------------------------------------------------------------------------- /src/ruby_module/dbchannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/dbchannel.c -------------------------------------------------------------------------------- /src/ruby_module/dbresult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/dbresult.c -------------------------------------------------------------------------------- /src/ruby_module/dbrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/dbrow.c -------------------------------------------------------------------------------- /src/ruby_module/libruby_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/libruby_module.h -------------------------------------------------------------------------------- /src/ruby_module/nickname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/nickname.c -------------------------------------------------------------------------------- /src/ruby_module/ruby_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/ruby_module.c -------------------------------------------------------------------------------- /src/ruby_module/servicemodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/ruby_module/servicemodule.c -------------------------------------------------------------------------------- /src/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/send.c -------------------------------------------------------------------------------- /src/servicemask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/servicemask.c -------------------------------------------------------------------------------- /src/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/services.c -------------------------------------------------------------------------------- /src/tor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/src/tor.c -------------------------------------------------------------------------------- /testcases/nickserv.test.plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/testcases/nickserv.test.plan -------------------------------------------------------------------------------- /tools/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-ircservices/HEAD/tools/release --------------------------------------------------------------------------------