├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── AUTHORS ├── BUGS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.FIRST ├── README.PLATFORMS ├── RELNOTES ├── TODO ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── contrib ├── Makefile.in ├── README ├── README.cloaking ├── challenge.irc ├── example_module.c ├── help │ ├── Makefile.in │ ├── opers │ │ ├── capture │ │ ├── chghost │ │ ├── chgident │ │ ├── chgname │ │ ├── classlist │ │ ├── clearchan │ │ ├── ctrace │ │ ├── delspoof │ │ ├── flags │ │ ├── forcejoin │ │ ├── forcepart │ │ ├── index │ │ ├── jupe │ │ ├── ltrace │ │ ├── mkpasswd │ │ ├── ojoin │ │ ├── opme │ │ ├── spoof │ │ ├── svsnick │ │ └── uncapture │ └── users │ │ └── index ├── ip_cloaking.c ├── ircd-hybrid.spec ├── ircd.init.in ├── m_change.c ├── m_classlist.c ├── m_clearchan.c ├── m_ctrace.c ├── m_flags.c ├── m_force.c ├── m_jupe.c ├── m_killhost.c ├── m_ltrace.c ├── m_mkpasswd.c ├── m_ojoin.c ├── m_operspy.c ├── m_opme.c ├── m_spoof.c ├── setup-win32.h └── win32build.bat ├── doc ├── CIDR.txt ├── LazyLinks.txt ├── Makefile.am ├── challenge.txt ├── guidelines.txt ├── index.txt ├── ircd.8 ├── kline.txt ├── messages.txt ├── modeg.txt ├── modes.txt ├── resv.txt ├── server-version-info ├── serverhide.txt ├── technical │ ├── Persistent_Clients.txt │ ├── README.openssl │ ├── cryptlink.txt │ ├── draft-mitchell-irc-capabilities-01.txt │ ├── event.txt │ ├── fd-management.txt │ ├── file-management.txt │ ├── hostmask.txt │ ├── index.txt │ ├── network.txt │ ├── rfc1459.txt │ ├── rfc2812.txt │ ├── rfc2813.txt │ ├── send.txt │ ├── ts3.txt │ ├── ts5.txt │ ├── ts6.txt │ └── whats-new-code.txt └── whats-new.txt ├── doxygen.conf ├── etc ├── Makefile.am ├── example.conf ├── example.conf.quick ├── example.efnet.conf └── simple.conf ├── help ├── Makefile.am ├── opers │ ├── Makefile.am │ ├── accept │ ├── admin │ ├── away │ ├── capab │ ├── cburst │ ├── challenge │ ├── client │ ├── close │ ├── cmode │ ├── connect │ ├── cryptlink │ ├── die │ ├── dline │ ├── drop │ ├── eob │ ├── error │ ├── etrace │ ├── gline │ ├── hash │ ├── help │ ├── index │ ├── info │ ├── invite │ ├── ison │ ├── join │ ├── kick │ ├── kill │ ├── kline │ ├── knock │ ├── knockll │ ├── links │ ├── list │ ├── lljoin │ ├── llnick │ ├── locops │ ├── lusers │ ├── map │ ├── modlist │ ├── modload │ ├── modrestart │ ├── modunload │ ├── motd │ ├── names │ ├── nburst │ ├── nick │ ├── notice │ ├── omotd │ ├── oper │ ├── operwall │ ├── part │ ├── pass │ ├── ping │ ├── pong │ ├── post │ ├── privmsg │ ├── quit │ ├── rehash │ ├── restart │ ├── resv │ ├── rkline │ ├── rxline │ ├── server │ ├── set │ ├── shedding │ ├── sjoin │ ├── squit │ ├── stats │ ├── svinfo │ ├── testgecos │ ├── testline │ ├── testmask │ ├── time │ ├── topic │ ├── trace │ ├── uhelp │ ├── umode │ ├── undline │ ├── ungline │ ├── unkline │ ├── unresv │ ├── unxline │ ├── user │ ├── userhost │ ├── users │ ├── version │ ├── wallops │ ├── who │ ├── whois │ ├── whowas │ └── xline └── users │ ├── Makefile.am │ ├── index │ ├── info │ ├── notice │ ├── privmsg │ ├── stats │ └── umode ├── include ├── Makefile.am ├── balloc.h ├── channel.h ├── channel_mode.h ├── client.h ├── common.h ├── dbuf.h ├── defaults.h ├── event.h ├── fdlist.h ├── fileio.h ├── handlers.h ├── hash.h ├── hook.h ├── hostmask.h ├── inet_misc.h ├── irc_getaddrinfo.h ├── irc_getnameinfo.h ├── irc_res.h ├── irc_reslib.h ├── irc_string.h ├── ircd.h ├── ircd_defs.h ├── ircd_getopt.h ├── ircd_handler.h ├── ircd_signal.h ├── list.h ├── listener.h ├── m_info.h ├── memory.h ├── modules.h ├── motd.h ├── msg.h ├── numeric.h ├── packet.h ├── parse.h ├── patchlevel.h ├── restart.h ├── resv.h ├── rlimits.h ├── rsa.h ├── s_auth.h ├── s_bsd.h ├── s_conf.h ├── s_gline.h ├── s_log.h ├── s_misc.h ├── s_serv.h ├── s_stats.h ├── s_user.h ├── send.h ├── serno.h ├── sprintf_irc.h ├── stdinc.h ├── supported.h ├── tools.h ├── userhost.h └── whowas.h ├── lib ├── Makefile.am └── pcre │ ├── AUTHORS │ ├── LICENCE │ ├── Makefile.am │ ├── README │ ├── 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 ├── m4 ├── ax_check_openssl.m4 ├── compiler.m4 └── options.m4 ├── messages ├── Makefile.am ├── README ├── ayb.lang ├── custom.lang ├── ircd-brazilian_pt.lang ├── ircd-croatian.lang ├── ircd-danish.lang ├── ircd-dutch.lang ├── ircd-french.lang ├── ircd-german.lang ├── ircd-norwegian.lang ├── ircd-polish.lang ├── ircd-russian.lang ├── ircd-spanish.lang ├── ircd-standard.example.lang └── ircd-swedish.lang ├── modules ├── Makefile.am ├── core │ ├── Makefile.am │ ├── m_die.c │ ├── m_join.c │ ├── m_kick.c │ ├── m_kill.c │ ├── m_message.c │ ├── m_mode.c │ ├── m_nick.c │ ├── m_part.c │ ├── m_quit.c │ ├── m_server.c │ ├── m_sjoin.c │ ├── m_squit.c │ ├── spy_admin_notice.c │ ├── spy_info_notice.c │ ├── spy_links_notice.c │ ├── spy_motd_notice.c │ ├── spy_stats_notice.c │ ├── spy_stats_p_notice.c │ ├── spy_trace_notice.c │ └── spy_whois_notice.c ├── m_accept.c ├── m_admin.c ├── m_away.c ├── m_cap.c ├── m_capab.c ├── m_capture.c ├── m_cburst.c ├── m_certfp.c ├── m_challenge.c ├── m_close.c ├── m_connect.c ├── m_cryptlink.c ├── m_drop.c ├── m_encap.c ├── m_eob.c ├── m_etrace.c ├── m_gline.c ├── m_gnotice.c ├── m_hash.c ├── m_help.c ├── m_info.c ├── m_invite.c ├── m_ison.c ├── m_kline.c ├── m_knock.c ├── m_links.c ├── m_list.c ├── m_lljoin.c ├── m_llnick.c ├── m_locops.c ├── m_log.c ├── m_lusers.c ├── m_map.c ├── m_motd.c ├── m_names.c ├── m_nburst.c ├── m_omotd.c ├── m_oper.c ├── m_operwall.c ├── m_pass.c ├── m_ping.c ├── m_pong.c ├── m_post.c ├── m_realhost.c ├── m_rehash.c ├── m_restart.c ├── m_resv.c ├── m_rkline.c ├── m_rxline.c ├── m_services.c ├── m_set.c ├── m_shedding.c ├── m_stats.c ├── m_svinfo.c ├── m_svscloak.c ├── m_svsmode.c ├── m_tburst.c ├── m_testline.c ├── m_testmask.c ├── m_time.c ├── m_topic.c ├── m_trace.c ├── m_user.c ├── m_userhost.c ├── m_users.c ├── m_version.c ├── m_wallops.c ├── m_webirc.c ├── m_who.c ├── m_whois.c ├── m_whowas.c ├── m_xline.c └── soft_reboot.c ├── oftc-configure.sh ├── servlink ├── Makefile.am ├── README ├── TODO ├── control.c ├── control.h ├── io.c ├── io.h ├── servlink.c └── servlink.h ├── src ├── Makefile.am ├── balloc.c ├── channel.c ├── channel_mode.c ├── client.c ├── crypt.c ├── csvlib.c ├── dbuf.c ├── dynlink.c ├── event.c ├── fdlist.c ├── fileio.c ├── getopt.c ├── hash.c ├── hook.c ├── hostmask.c ├── inet_misc.c ├── irc_getaddrinfo.c ├── irc_getnameinfo.c ├── irc_res.c ├── irc_reslib.c ├── irc_string.c ├── ircd.c ├── ircd_lexer.l ├── ircd_parser.y ├── ircd_signal.c ├── list.c ├── listener.c ├── m_error.c ├── match.c ├── memory.c ├── modules.c ├── motd.c ├── packet.c ├── parse.c ├── restart.c ├── resv.c ├── rsa.c ├── s_auth.c ├── s_bsd.c ├── s_bsd_devpoll.c ├── s_bsd_epoll.c ├── s_bsd_kqueue.c ├── s_bsd_poll.c ├── s_bsd_select.c ├── s_bsd_sigio.c ├── s_bsd_win32.c ├── s_conf.c ├── s_gline.c ├── s_log.c ├── s_misc.c ├── s_serv.c ├── s_stats.c ├── s_user.c ├── send.c ├── snprintf.c ├── sprintf_irc.c ├── tools.c ├── version.c └── whowas.c └── tools ├── README ├── README.mkpasswd ├── encspeed.c ├── mkkeypair ├── mkpasswd.c ├── untabify └── win32 ├── kill.c ├── rehash.c └── remotd.c /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.FIRST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/README.FIRST -------------------------------------------------------------------------------- /README.PLATFORMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/README.PLATFORMS -------------------------------------------------------------------------------- /RELNOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/RELNOTES -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/TODO -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/Makefile.in -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/README.cloaking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/README.cloaking -------------------------------------------------------------------------------- /contrib/challenge.irc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/challenge.irc -------------------------------------------------------------------------------- /contrib/example_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/example_module.c -------------------------------------------------------------------------------- /contrib/help/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/Makefile.in -------------------------------------------------------------------------------- /contrib/help/opers/capture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/capture -------------------------------------------------------------------------------- /contrib/help/opers/chghost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/chghost -------------------------------------------------------------------------------- /contrib/help/opers/chgident: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/chgident -------------------------------------------------------------------------------- /contrib/help/opers/chgname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/chgname -------------------------------------------------------------------------------- /contrib/help/opers/classlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/classlist -------------------------------------------------------------------------------- /contrib/help/opers/clearchan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/clearchan -------------------------------------------------------------------------------- /contrib/help/opers/ctrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/ctrace -------------------------------------------------------------------------------- /contrib/help/opers/delspoof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/delspoof -------------------------------------------------------------------------------- /contrib/help/opers/flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/flags -------------------------------------------------------------------------------- /contrib/help/opers/forcejoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/forcejoin -------------------------------------------------------------------------------- /contrib/help/opers/forcepart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/forcepart -------------------------------------------------------------------------------- /contrib/help/opers/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/index -------------------------------------------------------------------------------- /contrib/help/opers/jupe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/jupe -------------------------------------------------------------------------------- /contrib/help/opers/ltrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/ltrace -------------------------------------------------------------------------------- /contrib/help/opers/mkpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/mkpasswd -------------------------------------------------------------------------------- /contrib/help/opers/ojoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/ojoin -------------------------------------------------------------------------------- /contrib/help/opers/opme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/opme -------------------------------------------------------------------------------- /contrib/help/opers/spoof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/spoof -------------------------------------------------------------------------------- /contrib/help/opers/svsnick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/svsnick -------------------------------------------------------------------------------- /contrib/help/opers/uncapture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/opers/uncapture -------------------------------------------------------------------------------- /contrib/help/users/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/help/users/index -------------------------------------------------------------------------------- /contrib/ip_cloaking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/ip_cloaking.c -------------------------------------------------------------------------------- /contrib/ircd-hybrid.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/ircd-hybrid.spec -------------------------------------------------------------------------------- /contrib/ircd.init.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/ircd.init.in -------------------------------------------------------------------------------- /contrib/m_change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_change.c -------------------------------------------------------------------------------- /contrib/m_classlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_classlist.c -------------------------------------------------------------------------------- /contrib/m_clearchan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_clearchan.c -------------------------------------------------------------------------------- /contrib/m_ctrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_ctrace.c -------------------------------------------------------------------------------- /contrib/m_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_flags.c -------------------------------------------------------------------------------- /contrib/m_force.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_force.c -------------------------------------------------------------------------------- /contrib/m_jupe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_jupe.c -------------------------------------------------------------------------------- /contrib/m_killhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_killhost.c -------------------------------------------------------------------------------- /contrib/m_ltrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_ltrace.c -------------------------------------------------------------------------------- /contrib/m_mkpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_mkpasswd.c -------------------------------------------------------------------------------- /contrib/m_ojoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_ojoin.c -------------------------------------------------------------------------------- /contrib/m_operspy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_operspy.c -------------------------------------------------------------------------------- /contrib/m_opme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_opme.c -------------------------------------------------------------------------------- /contrib/m_spoof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/m_spoof.c -------------------------------------------------------------------------------- /contrib/setup-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/setup-win32.h -------------------------------------------------------------------------------- /contrib/win32build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/contrib/win32build.bat -------------------------------------------------------------------------------- /doc/CIDR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/CIDR.txt -------------------------------------------------------------------------------- /doc/LazyLinks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/LazyLinks.txt -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- 1 | MAINTAINERCLEANFILES=Makefile.in 2 | dist_man_MANS = ircd.8 3 | -------------------------------------------------------------------------------- /doc/challenge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/challenge.txt -------------------------------------------------------------------------------- /doc/guidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/guidelines.txt -------------------------------------------------------------------------------- /doc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/index.txt -------------------------------------------------------------------------------- /doc/ircd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/ircd.8 -------------------------------------------------------------------------------- /doc/kline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/kline.txt -------------------------------------------------------------------------------- /doc/messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/messages.txt -------------------------------------------------------------------------------- /doc/modeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/modeg.txt -------------------------------------------------------------------------------- /doc/modes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/modes.txt -------------------------------------------------------------------------------- /doc/resv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/resv.txt -------------------------------------------------------------------------------- /doc/server-version-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/server-version-info -------------------------------------------------------------------------------- /doc/serverhide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/serverhide.txt -------------------------------------------------------------------------------- /doc/technical/Persistent_Clients.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/Persistent_Clients.txt -------------------------------------------------------------------------------- /doc/technical/README.openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/README.openssl -------------------------------------------------------------------------------- /doc/technical/cryptlink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/cryptlink.txt -------------------------------------------------------------------------------- /doc/technical/draft-mitchell-irc-capabilities-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/draft-mitchell-irc-capabilities-01.txt -------------------------------------------------------------------------------- /doc/technical/event.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/event.txt -------------------------------------------------------------------------------- /doc/technical/fd-management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/fd-management.txt -------------------------------------------------------------------------------- /doc/technical/file-management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/file-management.txt -------------------------------------------------------------------------------- /doc/technical/hostmask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/hostmask.txt -------------------------------------------------------------------------------- /doc/technical/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/index.txt -------------------------------------------------------------------------------- /doc/technical/network.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/network.txt -------------------------------------------------------------------------------- /doc/technical/rfc1459.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/rfc1459.txt -------------------------------------------------------------------------------- /doc/technical/rfc2812.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/rfc2812.txt -------------------------------------------------------------------------------- /doc/technical/rfc2813.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/rfc2813.txt -------------------------------------------------------------------------------- /doc/technical/send.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/send.txt -------------------------------------------------------------------------------- /doc/technical/ts3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/ts3.txt -------------------------------------------------------------------------------- /doc/technical/ts5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/ts5.txt -------------------------------------------------------------------------------- /doc/technical/ts6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/ts6.txt -------------------------------------------------------------------------------- /doc/technical/whats-new-code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/technical/whats-new-code.txt -------------------------------------------------------------------------------- /doc/whats-new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doc/whats-new.txt -------------------------------------------------------------------------------- /doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/doxygen.conf -------------------------------------------------------------------------------- /etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/etc/Makefile.am -------------------------------------------------------------------------------- /etc/example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/etc/example.conf -------------------------------------------------------------------------------- /etc/example.conf.quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/etc/example.conf.quick -------------------------------------------------------------------------------- /etc/example.efnet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/etc/example.efnet.conf -------------------------------------------------------------------------------- /etc/simple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/etc/simple.conf -------------------------------------------------------------------------------- /help/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/Makefile.am -------------------------------------------------------------------------------- /help/opers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/Makefile.am -------------------------------------------------------------------------------- /help/opers/accept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/accept -------------------------------------------------------------------------------- /help/opers/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/admin -------------------------------------------------------------------------------- /help/opers/away: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/away -------------------------------------------------------------------------------- /help/opers/capab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/capab -------------------------------------------------------------------------------- /help/opers/cburst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/cburst -------------------------------------------------------------------------------- /help/opers/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/challenge -------------------------------------------------------------------------------- /help/opers/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/client -------------------------------------------------------------------------------- /help/opers/close: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/close -------------------------------------------------------------------------------- /help/opers/cmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/cmode -------------------------------------------------------------------------------- /help/opers/connect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/connect -------------------------------------------------------------------------------- /help/opers/cryptlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/cryptlink -------------------------------------------------------------------------------- /help/opers/die: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/die -------------------------------------------------------------------------------- /help/opers/dline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/dline -------------------------------------------------------------------------------- /help/opers/drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/drop -------------------------------------------------------------------------------- /help/opers/eob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/eob -------------------------------------------------------------------------------- /help/opers/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/error -------------------------------------------------------------------------------- /help/opers/etrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/etrace -------------------------------------------------------------------------------- /help/opers/gline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/gline -------------------------------------------------------------------------------- /help/opers/hash: -------------------------------------------------------------------------------- 1 | HASH 2 | 3 | Shows the hash statistics. 4 | -------------------------------------------------------------------------------- /help/opers/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/help -------------------------------------------------------------------------------- /help/opers/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/index -------------------------------------------------------------------------------- /help/opers/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/info -------------------------------------------------------------------------------- /help/opers/invite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/invite -------------------------------------------------------------------------------- /help/opers/ison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/ison -------------------------------------------------------------------------------- /help/opers/join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/join -------------------------------------------------------------------------------- /help/opers/kick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/kick -------------------------------------------------------------------------------- /help/opers/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/kill -------------------------------------------------------------------------------- /help/opers/kline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/kline -------------------------------------------------------------------------------- /help/opers/knock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/knock -------------------------------------------------------------------------------- /help/opers/knockll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/knockll -------------------------------------------------------------------------------- /help/opers/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/links -------------------------------------------------------------------------------- /help/opers/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/list -------------------------------------------------------------------------------- /help/opers/lljoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/lljoin -------------------------------------------------------------------------------- /help/opers/llnick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/llnick -------------------------------------------------------------------------------- /help/opers/locops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/locops -------------------------------------------------------------------------------- /help/opers/lusers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/lusers -------------------------------------------------------------------------------- /help/opers/map: -------------------------------------------------------------------------------- 1 | MAP 2 | 3 | Shows the network map. 4 | -------------------------------------------------------------------------------- /help/opers/modlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/modlist -------------------------------------------------------------------------------- /help/opers/modload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/modload -------------------------------------------------------------------------------- /help/opers/modrestart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/modrestart -------------------------------------------------------------------------------- /help/opers/modunload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/modunload -------------------------------------------------------------------------------- /help/opers/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/motd -------------------------------------------------------------------------------- /help/opers/names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/names -------------------------------------------------------------------------------- /help/opers/nburst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/nburst -------------------------------------------------------------------------------- /help/opers/nick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/nick -------------------------------------------------------------------------------- /help/opers/notice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/notice -------------------------------------------------------------------------------- /help/opers/omotd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/omotd -------------------------------------------------------------------------------- /help/opers/oper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/oper -------------------------------------------------------------------------------- /help/opers/operwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/operwall -------------------------------------------------------------------------------- /help/opers/part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/part -------------------------------------------------------------------------------- /help/opers/pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/pass -------------------------------------------------------------------------------- /help/opers/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/ping -------------------------------------------------------------------------------- /help/opers/pong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/pong -------------------------------------------------------------------------------- /help/opers/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/post -------------------------------------------------------------------------------- /help/opers/privmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/privmsg -------------------------------------------------------------------------------- /help/opers/quit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/quit -------------------------------------------------------------------------------- /help/opers/rehash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/rehash -------------------------------------------------------------------------------- /help/opers/restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/restart -------------------------------------------------------------------------------- /help/opers/resv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/resv -------------------------------------------------------------------------------- /help/opers/rkline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/rkline -------------------------------------------------------------------------------- /help/opers/rxline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/rxline -------------------------------------------------------------------------------- /help/opers/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/server -------------------------------------------------------------------------------- /help/opers/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/set -------------------------------------------------------------------------------- /help/opers/shedding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/shedding -------------------------------------------------------------------------------- /help/opers/sjoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/sjoin -------------------------------------------------------------------------------- /help/opers/squit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/squit -------------------------------------------------------------------------------- /help/opers/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/stats -------------------------------------------------------------------------------- /help/opers/svinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/svinfo -------------------------------------------------------------------------------- /help/opers/testgecos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/testgecos -------------------------------------------------------------------------------- /help/opers/testline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/testline -------------------------------------------------------------------------------- /help/opers/testmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/testmask -------------------------------------------------------------------------------- /help/opers/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/time -------------------------------------------------------------------------------- /help/opers/topic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/topic -------------------------------------------------------------------------------- /help/opers/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/trace -------------------------------------------------------------------------------- /help/opers/uhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/uhelp -------------------------------------------------------------------------------- /help/opers/umode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/umode -------------------------------------------------------------------------------- /help/opers/undline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/undline -------------------------------------------------------------------------------- /help/opers/ungline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/ungline -------------------------------------------------------------------------------- /help/opers/unkline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/unkline -------------------------------------------------------------------------------- /help/opers/unresv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/unresv -------------------------------------------------------------------------------- /help/opers/unxline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/unxline -------------------------------------------------------------------------------- /help/opers/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/user -------------------------------------------------------------------------------- /help/opers/userhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/userhost -------------------------------------------------------------------------------- /help/opers/users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/users -------------------------------------------------------------------------------- /help/opers/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/version -------------------------------------------------------------------------------- /help/opers/wallops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/wallops -------------------------------------------------------------------------------- /help/opers/who: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/who -------------------------------------------------------------------------------- /help/opers/whois: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/whois -------------------------------------------------------------------------------- /help/opers/whowas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/whowas -------------------------------------------------------------------------------- /help/opers/xline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/opers/xline -------------------------------------------------------------------------------- /help/users/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/users/Makefile.am -------------------------------------------------------------------------------- /help/users/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/users/index -------------------------------------------------------------------------------- /help/users/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/users/info -------------------------------------------------------------------------------- /help/users/notice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/users/notice -------------------------------------------------------------------------------- /help/users/privmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/users/privmsg -------------------------------------------------------------------------------- /help/users/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/users/stats -------------------------------------------------------------------------------- /help/users/umode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/help/users/umode -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/balloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/balloc.h -------------------------------------------------------------------------------- /include/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/channel.h -------------------------------------------------------------------------------- /include/channel_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/channel_mode.h -------------------------------------------------------------------------------- /include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/client.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/common.h -------------------------------------------------------------------------------- /include/dbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/dbuf.h -------------------------------------------------------------------------------- /include/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/defaults.h -------------------------------------------------------------------------------- /include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/event.h -------------------------------------------------------------------------------- /include/fdlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/fdlist.h -------------------------------------------------------------------------------- /include/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/fileio.h -------------------------------------------------------------------------------- /include/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/handlers.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/hook.h -------------------------------------------------------------------------------- /include/hostmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/hostmask.h -------------------------------------------------------------------------------- /include/inet_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/inet_misc.h -------------------------------------------------------------------------------- /include/irc_getaddrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/irc_getaddrinfo.h -------------------------------------------------------------------------------- /include/irc_getnameinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/irc_getnameinfo.h -------------------------------------------------------------------------------- /include/irc_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/irc_res.h -------------------------------------------------------------------------------- /include/irc_reslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/irc_reslib.h -------------------------------------------------------------------------------- /include/irc_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/irc_string.h -------------------------------------------------------------------------------- /include/ircd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/ircd.h -------------------------------------------------------------------------------- /include/ircd_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/ircd_defs.h -------------------------------------------------------------------------------- /include/ircd_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/ircd_getopt.h -------------------------------------------------------------------------------- /include/ircd_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/ircd_handler.h -------------------------------------------------------------------------------- /include/ircd_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/ircd_signal.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/list.h -------------------------------------------------------------------------------- /include/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/listener.h -------------------------------------------------------------------------------- /include/m_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/m_info.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/modules.h -------------------------------------------------------------------------------- /include/motd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/motd.h -------------------------------------------------------------------------------- /include/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/msg.h -------------------------------------------------------------------------------- /include/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/numeric.h -------------------------------------------------------------------------------- /include/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/packet.h -------------------------------------------------------------------------------- /include/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/parse.h -------------------------------------------------------------------------------- /include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/patchlevel.h -------------------------------------------------------------------------------- /include/restart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/restart.h -------------------------------------------------------------------------------- /include/resv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/resv.h -------------------------------------------------------------------------------- /include/rlimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/rlimits.h -------------------------------------------------------------------------------- /include/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/rsa.h -------------------------------------------------------------------------------- /include/s_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_auth.h -------------------------------------------------------------------------------- /include/s_bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_bsd.h -------------------------------------------------------------------------------- /include/s_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_conf.h -------------------------------------------------------------------------------- /include/s_gline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_gline.h -------------------------------------------------------------------------------- /include/s_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_log.h -------------------------------------------------------------------------------- /include/s_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_misc.h -------------------------------------------------------------------------------- /include/s_serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_serv.h -------------------------------------------------------------------------------- /include/s_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_stats.h -------------------------------------------------------------------------------- /include/s_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/s_user.h -------------------------------------------------------------------------------- /include/send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/send.h -------------------------------------------------------------------------------- /include/serno.h: -------------------------------------------------------------------------------- 1 | #define SERIALNUM "STABLE" 2 | -------------------------------------------------------------------------------- /include/sprintf_irc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/sprintf_irc.h -------------------------------------------------------------------------------- /include/stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/stdinc.h -------------------------------------------------------------------------------- /include/supported.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/supported.h -------------------------------------------------------------------------------- /include/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/tools.h -------------------------------------------------------------------------------- /include/userhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/userhost.h -------------------------------------------------------------------------------- /include/whowas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/include/whowas.h -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- 1 | MAINTAINERCLEANFILES=Makefile.in 2 | SUBDIRS=pcre 3 | -------------------------------------------------------------------------------- /lib/pcre/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/AUTHORS -------------------------------------------------------------------------------- /lib/pcre/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/LICENCE -------------------------------------------------------------------------------- /lib/pcre/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/Makefile.am -------------------------------------------------------------------------------- /lib/pcre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/README -------------------------------------------------------------------------------- /lib/pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre.h -------------------------------------------------------------------------------- /lib/pcre/pcre_chartables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_chartables.c -------------------------------------------------------------------------------- /lib/pcre/pcre_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_compile.c -------------------------------------------------------------------------------- /lib/pcre/pcre_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_exec.c -------------------------------------------------------------------------------- /lib/pcre/pcre_fullinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_fullinfo.c -------------------------------------------------------------------------------- /lib/pcre/pcre_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_globals.c -------------------------------------------------------------------------------- /lib/pcre/pcre_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_internal.h -------------------------------------------------------------------------------- /lib/pcre/pcre_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_study.c -------------------------------------------------------------------------------- /lib/pcre/pcre_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_tables.c -------------------------------------------------------------------------------- /lib/pcre/pcre_try_flipped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/lib/pcre/pcre_try_flipped.c -------------------------------------------------------------------------------- /m4/ax_check_openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/m4/ax_check_openssl.m4 -------------------------------------------------------------------------------- /m4/compiler.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/m4/compiler.m4 -------------------------------------------------------------------------------- /m4/options.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/m4/options.m4 -------------------------------------------------------------------------------- /messages/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/Makefile.am -------------------------------------------------------------------------------- /messages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/README -------------------------------------------------------------------------------- /messages/ayb.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ayb.lang -------------------------------------------------------------------------------- /messages/custom.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/custom.lang -------------------------------------------------------------------------------- /messages/ircd-brazilian_pt.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-brazilian_pt.lang -------------------------------------------------------------------------------- /messages/ircd-croatian.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-croatian.lang -------------------------------------------------------------------------------- /messages/ircd-danish.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-danish.lang -------------------------------------------------------------------------------- /messages/ircd-dutch.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-dutch.lang -------------------------------------------------------------------------------- /messages/ircd-french.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-french.lang -------------------------------------------------------------------------------- /messages/ircd-german.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-german.lang -------------------------------------------------------------------------------- /messages/ircd-norwegian.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-norwegian.lang -------------------------------------------------------------------------------- /messages/ircd-polish.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-polish.lang -------------------------------------------------------------------------------- /messages/ircd-russian.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-russian.lang -------------------------------------------------------------------------------- /messages/ircd-spanish.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-spanish.lang -------------------------------------------------------------------------------- /messages/ircd-standard.example.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-standard.example.lang -------------------------------------------------------------------------------- /messages/ircd-swedish.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/messages/ircd-swedish.lang -------------------------------------------------------------------------------- /modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/Makefile.am -------------------------------------------------------------------------------- /modules/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/Makefile.am -------------------------------------------------------------------------------- /modules/core/m_die.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_die.c -------------------------------------------------------------------------------- /modules/core/m_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_join.c -------------------------------------------------------------------------------- /modules/core/m_kick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_kick.c -------------------------------------------------------------------------------- /modules/core/m_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_kill.c -------------------------------------------------------------------------------- /modules/core/m_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_message.c -------------------------------------------------------------------------------- /modules/core/m_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_mode.c -------------------------------------------------------------------------------- /modules/core/m_nick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_nick.c -------------------------------------------------------------------------------- /modules/core/m_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_part.c -------------------------------------------------------------------------------- /modules/core/m_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_quit.c -------------------------------------------------------------------------------- /modules/core/m_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_server.c -------------------------------------------------------------------------------- /modules/core/m_sjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_sjoin.c -------------------------------------------------------------------------------- /modules/core/m_squit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/m_squit.c -------------------------------------------------------------------------------- /modules/core/spy_admin_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/spy_admin_notice.c -------------------------------------------------------------------------------- /modules/core/spy_info_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/spy_info_notice.c -------------------------------------------------------------------------------- /modules/core/spy_links_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/spy_links_notice.c -------------------------------------------------------------------------------- /modules/core/spy_motd_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/spy_motd_notice.c -------------------------------------------------------------------------------- /modules/core/spy_stats_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/spy_stats_notice.c -------------------------------------------------------------------------------- /modules/core/spy_stats_p_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/spy_stats_p_notice.c -------------------------------------------------------------------------------- /modules/core/spy_trace_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/spy_trace_notice.c -------------------------------------------------------------------------------- /modules/core/spy_whois_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/core/spy_whois_notice.c -------------------------------------------------------------------------------- /modules/m_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_accept.c -------------------------------------------------------------------------------- /modules/m_admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_admin.c -------------------------------------------------------------------------------- /modules/m_away.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_away.c -------------------------------------------------------------------------------- /modules/m_cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_cap.c -------------------------------------------------------------------------------- /modules/m_capab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_capab.c -------------------------------------------------------------------------------- /modules/m_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_capture.c -------------------------------------------------------------------------------- /modules/m_cburst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_cburst.c -------------------------------------------------------------------------------- /modules/m_certfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_certfp.c -------------------------------------------------------------------------------- /modules/m_challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_challenge.c -------------------------------------------------------------------------------- /modules/m_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_close.c -------------------------------------------------------------------------------- /modules/m_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_connect.c -------------------------------------------------------------------------------- /modules/m_cryptlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_cryptlink.c -------------------------------------------------------------------------------- /modules/m_drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_drop.c -------------------------------------------------------------------------------- /modules/m_encap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_encap.c -------------------------------------------------------------------------------- /modules/m_eob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_eob.c -------------------------------------------------------------------------------- /modules/m_etrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_etrace.c -------------------------------------------------------------------------------- /modules/m_gline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_gline.c -------------------------------------------------------------------------------- /modules/m_gnotice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_gnotice.c -------------------------------------------------------------------------------- /modules/m_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_hash.c -------------------------------------------------------------------------------- /modules/m_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_help.c -------------------------------------------------------------------------------- /modules/m_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_info.c -------------------------------------------------------------------------------- /modules/m_invite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_invite.c -------------------------------------------------------------------------------- /modules/m_ison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_ison.c -------------------------------------------------------------------------------- /modules/m_kline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_kline.c -------------------------------------------------------------------------------- /modules/m_knock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_knock.c -------------------------------------------------------------------------------- /modules/m_links.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_links.c -------------------------------------------------------------------------------- /modules/m_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_list.c -------------------------------------------------------------------------------- /modules/m_lljoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_lljoin.c -------------------------------------------------------------------------------- /modules/m_llnick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_llnick.c -------------------------------------------------------------------------------- /modules/m_locops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_locops.c -------------------------------------------------------------------------------- /modules/m_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_log.c -------------------------------------------------------------------------------- /modules/m_lusers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_lusers.c -------------------------------------------------------------------------------- /modules/m_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_map.c -------------------------------------------------------------------------------- /modules/m_motd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_motd.c -------------------------------------------------------------------------------- /modules/m_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_names.c -------------------------------------------------------------------------------- /modules/m_nburst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_nburst.c -------------------------------------------------------------------------------- /modules/m_omotd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_omotd.c -------------------------------------------------------------------------------- /modules/m_oper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_oper.c -------------------------------------------------------------------------------- /modules/m_operwall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_operwall.c -------------------------------------------------------------------------------- /modules/m_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_pass.c -------------------------------------------------------------------------------- /modules/m_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_ping.c -------------------------------------------------------------------------------- /modules/m_pong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_pong.c -------------------------------------------------------------------------------- /modules/m_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_post.c -------------------------------------------------------------------------------- /modules/m_realhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_realhost.c -------------------------------------------------------------------------------- /modules/m_rehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_rehash.c -------------------------------------------------------------------------------- /modules/m_restart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_restart.c -------------------------------------------------------------------------------- /modules/m_resv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_resv.c -------------------------------------------------------------------------------- /modules/m_rkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_rkline.c -------------------------------------------------------------------------------- /modules/m_rxline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_rxline.c -------------------------------------------------------------------------------- /modules/m_services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_services.c -------------------------------------------------------------------------------- /modules/m_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_set.c -------------------------------------------------------------------------------- /modules/m_shedding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_shedding.c -------------------------------------------------------------------------------- /modules/m_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_stats.c -------------------------------------------------------------------------------- /modules/m_svinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_svinfo.c -------------------------------------------------------------------------------- /modules/m_svscloak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_svscloak.c -------------------------------------------------------------------------------- /modules/m_svsmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_svsmode.c -------------------------------------------------------------------------------- /modules/m_tburst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_tburst.c -------------------------------------------------------------------------------- /modules/m_testline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_testline.c -------------------------------------------------------------------------------- /modules/m_testmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_testmask.c -------------------------------------------------------------------------------- /modules/m_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_time.c -------------------------------------------------------------------------------- /modules/m_topic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_topic.c -------------------------------------------------------------------------------- /modules/m_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_trace.c -------------------------------------------------------------------------------- /modules/m_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_user.c -------------------------------------------------------------------------------- /modules/m_userhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_userhost.c -------------------------------------------------------------------------------- /modules/m_users.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_users.c -------------------------------------------------------------------------------- /modules/m_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_version.c -------------------------------------------------------------------------------- /modules/m_wallops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_wallops.c -------------------------------------------------------------------------------- /modules/m_webirc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_webirc.c -------------------------------------------------------------------------------- /modules/m_who.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_who.c -------------------------------------------------------------------------------- /modules/m_whois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_whois.c -------------------------------------------------------------------------------- /modules/m_whowas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_whowas.c -------------------------------------------------------------------------------- /modules/m_xline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/m_xline.c -------------------------------------------------------------------------------- /modules/soft_reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/modules/soft_reboot.c -------------------------------------------------------------------------------- /oftc-configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/oftc-configure.sh -------------------------------------------------------------------------------- /servlink/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/Makefile.am -------------------------------------------------------------------------------- /servlink/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/README -------------------------------------------------------------------------------- /servlink/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/TODO -------------------------------------------------------------------------------- /servlink/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/control.c -------------------------------------------------------------------------------- /servlink/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/control.h -------------------------------------------------------------------------------- /servlink/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/io.c -------------------------------------------------------------------------------- /servlink/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/io.h -------------------------------------------------------------------------------- /servlink/servlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/servlink.c -------------------------------------------------------------------------------- /servlink/servlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/servlink/servlink.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/balloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/balloc.c -------------------------------------------------------------------------------- /src/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/channel.c -------------------------------------------------------------------------------- /src/channel_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/channel_mode.c -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/client.c -------------------------------------------------------------------------------- /src/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/crypt.c -------------------------------------------------------------------------------- /src/csvlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/csvlib.c -------------------------------------------------------------------------------- /src/dbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/dbuf.c -------------------------------------------------------------------------------- /src/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/dynlink.c -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/event.c -------------------------------------------------------------------------------- /src/fdlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/fdlist.c -------------------------------------------------------------------------------- /src/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/fileio.c -------------------------------------------------------------------------------- /src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/getopt.c -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/hook.c -------------------------------------------------------------------------------- /src/hostmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/hostmask.c -------------------------------------------------------------------------------- /src/inet_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/inet_misc.c -------------------------------------------------------------------------------- /src/irc_getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/irc_getaddrinfo.c -------------------------------------------------------------------------------- /src/irc_getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/irc_getnameinfo.c -------------------------------------------------------------------------------- /src/irc_res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/irc_res.c -------------------------------------------------------------------------------- /src/irc_reslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/irc_reslib.c -------------------------------------------------------------------------------- /src/irc_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/irc_string.c -------------------------------------------------------------------------------- /src/ircd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/ircd.c -------------------------------------------------------------------------------- /src/ircd_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/ircd_lexer.l -------------------------------------------------------------------------------- /src/ircd_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/ircd_parser.y -------------------------------------------------------------------------------- /src/ircd_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/ircd_signal.c -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/list.c -------------------------------------------------------------------------------- /src/listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/listener.c -------------------------------------------------------------------------------- /src/m_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/m_error.c -------------------------------------------------------------------------------- /src/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/match.c -------------------------------------------------------------------------------- /src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/memory.c -------------------------------------------------------------------------------- /src/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/modules.c -------------------------------------------------------------------------------- /src/motd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/motd.c -------------------------------------------------------------------------------- /src/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/packet.c -------------------------------------------------------------------------------- /src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/parse.c -------------------------------------------------------------------------------- /src/restart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/restart.c -------------------------------------------------------------------------------- /src/resv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/resv.c -------------------------------------------------------------------------------- /src/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/rsa.c -------------------------------------------------------------------------------- /src/s_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_auth.c -------------------------------------------------------------------------------- /src/s_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_bsd.c -------------------------------------------------------------------------------- /src/s_bsd_devpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_bsd_devpoll.c -------------------------------------------------------------------------------- /src/s_bsd_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_bsd_epoll.c -------------------------------------------------------------------------------- /src/s_bsd_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_bsd_kqueue.c -------------------------------------------------------------------------------- /src/s_bsd_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_bsd_poll.c -------------------------------------------------------------------------------- /src/s_bsd_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_bsd_select.c -------------------------------------------------------------------------------- /src/s_bsd_sigio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_bsd_sigio.c -------------------------------------------------------------------------------- /src/s_bsd_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_bsd_win32.c -------------------------------------------------------------------------------- /src/s_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_conf.c -------------------------------------------------------------------------------- /src/s_gline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_gline.c -------------------------------------------------------------------------------- /src/s_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_log.c -------------------------------------------------------------------------------- /src/s_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_misc.c -------------------------------------------------------------------------------- /src/s_serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_serv.c -------------------------------------------------------------------------------- /src/s_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_stats.c -------------------------------------------------------------------------------- /src/s_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/s_user.c -------------------------------------------------------------------------------- /src/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/send.c -------------------------------------------------------------------------------- /src/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/snprintf.c -------------------------------------------------------------------------------- /src/sprintf_irc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/sprintf_irc.c -------------------------------------------------------------------------------- /src/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/tools.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/version.c -------------------------------------------------------------------------------- /src/whowas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/src/whowas.c -------------------------------------------------------------------------------- /tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/README -------------------------------------------------------------------------------- /tools/README.mkpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/README.mkpasswd -------------------------------------------------------------------------------- /tools/encspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/encspeed.c -------------------------------------------------------------------------------- /tools/mkkeypair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/mkkeypair -------------------------------------------------------------------------------- /tools/mkpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/mkpasswd.c -------------------------------------------------------------------------------- /tools/untabify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/untabify -------------------------------------------------------------------------------- /tools/win32/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/win32/kill.c -------------------------------------------------------------------------------- /tools/win32/rehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/win32/rehash.c -------------------------------------------------------------------------------- /tools/win32/remotd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oftc/oftc-hybrid/HEAD/tools/win32/remotd.c --------------------------------------------------------------------------------