├── .gitignore ├── .mailmap ├── .ophion-keep ├── CODE_OF_CONDUCT.md ├── CREDITS ├── LICENSE ├── NEWS.md ├── README.md ├── authd ├── authd.c ├── authd.h ├── dns.c ├── dns.h ├── getaddrinfo.c ├── getaddrinfo.h ├── getnameinfo.c ├── getnameinfo.h ├── meson.build ├── notice.c ├── notice.h ├── provider.c ├── provider.h ├── providers │ ├── dnsbl.c │ ├── ident.c │ ├── opm.c │ └── rdns.c ├── res.c ├── res.h ├── reslib.c ├── reslib.h └── reslist.c ├── bandb ├── bandb.c ├── bantool.c ├── meson.build ├── rsdb.h ├── rsdb_snprintf.c ├── rsdb_sqlite3.c ├── sqlite3.c └── sqlite3.h ├── configure ├── doc ├── credits-past.txt ├── features │ ├── account-notify.txt │ ├── away-notify.txt │ ├── challenge.txt │ ├── collision_fnc.txt │ ├── extban.txt │ ├── extended-join.txt │ ├── index.txt │ ├── modeg.txt │ ├── monitor.txt │ ├── sasl.txt │ ├── services.txt │ └── tgchange.txt ├── index.txt ├── ircd.conf.example ├── ircd.motd ├── logfiles.txt ├── meson.build ├── modes.txt ├── oper-guide │ ├── .gitignore │ ├── Makefile │ ├── cmodes.rst │ ├── commands.rst │ ├── conf.py │ ├── config.rst │ ├── index.rst │ ├── intro.rst │ ├── make.bat │ ├── oprivs.rst │ ├── ucommands.rst │ └── umodes.rst ├── reference.conf ├── server-version-info.txt └── technical │ ├── capab.txt │ ├── cluster.txt │ ├── euid.txt │ ├── event.txt │ ├── hooks.txt │ ├── hostmask.txt │ ├── index.txt │ ├── linebuf.txt │ └── ts6-protocol.txt ├── extensions ├── README ├── chantype_dummy.c ├── chm_adminonly.c ├── chm_insecure.c ├── chm_nonotice.c ├── chm_operonly.c ├── chm_operonly_compat.c ├── chm_operpeace.c ├── chm_sslonly.c ├── chm_sslonly_compat.c ├── createauthonly.c ├── createoperonly.c ├── drain.c ├── example_module.c ├── extb_canjoin.c ├── extb_channel.c ├── extb_combi.c ├── extb_extgecos.c ├── extb_hostmask.c ├── extb_oper.c ├── extb_realname.c ├── extb_server.c ├── extb_usermode.c ├── filter.c ├── force_user_invis.c ├── helpops.c ├── hide_uncommon_channels.c ├── hurt.c ├── invite_notify.c ├── ip_cloaking.c ├── ip_cloaking_3.0.c ├── ip_cloaking_4.0.c ├── ip_cloaking_old.c ├── m_adminwall.c ├── m_echotags.c ├── m_extendchans.c ├── m_findforwards.c ├── m_identify.c ├── m_locops.c ├── m_mkpasswd.c ├── m_ojoin.c ├── m_okick.c ├── m_omode.c ├── m_opme.c ├── m_roleplay.c ├── m_sendbans.c ├── meson.build ├── no_kill_services.c ├── no_locops.c ├── no_oper_invis.c ├── override.c ├── override_kick_immunity.c ├── restrict-unauthenticated.c ├── sasl_usercloak.c ├── sno_channelcreate.c ├── sno_farconnect.c ├── sno_globalkline.c ├── sno_globalnickchange.c ├── sno_globaloper.c ├── sno_whois.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 └── umode_noctcp.c ├── help ├── gen-help-index.sh ├── meson.build ├── opers.cmds ├── opers │ ├── accept │ ├── admin │ ├── away │ ├── capab │ ├── challenge │ ├── chantrace │ ├── close │ ├── cmode │ ├── connect │ ├── credits │ ├── die │ ├── dline │ ├── error │ ├── etrace │ ├── extban │ ├── grant │ ├── help │ ├── index │ ├── info │ ├── invite │ ├── ison │ ├── join │ ├── kick │ ├── kill │ ├── kline │ ├── knock │ ├── links │ ├── list │ ├── locops │ ├── lusers │ ├── map │ ├── masktrace │ ├── modlist │ ├── modload │ ├── modreload │ ├── modrestart │ ├── modunload │ ├── monitor │ ├── motd │ ├── names │ ├── nick │ ├── notice │ ├── oper │ ├── operspy │ ├── operwall │ ├── part │ ├── pass │ ├── ping │ ├── pong │ ├── post │ ├── privmsg │ ├── privs │ ├── quit │ ├── rehash │ ├── restart │ ├── resv │ ├── scan │ ├── server │ ├── set │ ├── sjoin │ ├── snomask │ ├── squit │ ├── stats │ ├── svinfo │ ├── testgecos │ ├── testline │ ├── testmask │ ├── time │ ├── topic │ ├── trace │ ├── uhelp │ ├── umode │ ├── undline │ ├── unkline │ ├── unreject │ ├── unresv │ ├── unxline │ ├── user │ ├── userhost │ ├── users │ ├── version │ ├── wallops │ ├── who │ ├── whois │ ├── whowas │ └── xline ├── users.cmds └── users │ ├── index │ ├── info │ ├── notice │ ├── privmsg │ ├── stats │ └── umode ├── include ├── account.h ├── authproc.h ├── bandbi.h ├── cache.h ├── capability.h ├── certfp.h ├── channel.h ├── channel_access.h ├── chmode.h ├── class.h ├── client.h ├── defaults.h ├── dns.h ├── hash.h ├── hook.h ├── hostmask.h ├── inline │ └── stringops.h ├── ircd.h ├── ircd_defs.h ├── ircd_getopt.h ├── ircd_linker.h ├── ircd_signal.h ├── listener.h ├── logger.h ├── m_info.h ├── match.h ├── meson.build ├── messages.h ├── modules.h ├── monitor.h ├── msg.h ├── msgbuf.h ├── newconf.h ├── numeric.h ├── operhash.h ├── packet.h ├── parse.h ├── patchlevel.h ├── privilege.h ├── propertyset.h ├── ratelimit.h ├── reject.h ├── restart.h ├── s_assert.h ├── s_conf.h ├── s_newconf.h ├── s_serv.h ├── s_stats.h ├── s_user.h ├── sasl.h ├── scache.h ├── send.h ├── serno.h.SH ├── setup.h.meson ├── snomask.h ├── sslproc.h ├── stdinc.h ├── substitution.h ├── supported.h ├── tgchange.h ├── whowas.h └── wsproc.h ├── ircd ├── account.c ├── authproc.c ├── bandbi.c ├── cache.c ├── capability.c ├── channel.c ├── channel_access.c ├── chmode.c ├── class.c ├── client.c ├── dns.c ├── extban.c ├── getopt.c ├── hash.c ├── hook.c ├── hostmask.c ├── ircd.c ├── ircd_lexer.l ├── ircd_parser.y ├── ircd_signal.c ├── listener.c ├── logger.c ├── match.c ├── meson.build ├── modules.c ├── monitor.c ├── msgbuf.c ├── newconf.c ├── operhash.c ├── ophion │ ├── main.c │ └── meson.build ├── packet.c ├── parse.c ├── privilege.c ├── propertyset.c ├── ratelimit.c ├── reject.c ├── restart.c ├── s_conf.c ├── s_newconf.c ├── s_serv.c ├── s_user.c ├── scache.c ├── send.c ├── snomask.c ├── sslproc.c ├── substitution.c ├── supported.c ├── tgchange.c ├── version.c.SH ├── whowas.c └── wsproc.c ├── librb ├── COPYING ├── CREDITS ├── README.md ├── TODO ├── include │ ├── arc4random.h │ ├── commio-int.h │ ├── commio-ssl.h │ ├── event-int.h │ ├── librb-config.h.meson │ ├── librb_config.h.meson │ ├── meson.build │ ├── rb_balloc.h │ ├── rb_commio.h │ ├── rb_dictionary.h │ ├── rb_event.h │ ├── rb_helper.h │ ├── rb_lib.h │ ├── rb_linebuf.h │ ├── rb_memory.h │ ├── rb_patricia.h │ ├── rb_radixtree.h │ ├── rb_rawbuf.h │ ├── rb_tools.h │ └── serno.h.SH ├── librb.pc.in ├── meson.build └── src │ ├── arc4random.c │ ├── balloc.c │ ├── commio.c │ ├── crypt.c │ ├── devpoll.c │ ├── dictionary.c │ ├── epoll.c │ ├── event.c │ ├── export-syms.txt │ ├── gnutls.c │ ├── gnutls_ratbox.h │ ├── helper.c │ ├── kqueue.c │ ├── linebuf.c │ ├── mbedtls.c │ ├── mbedtls_ratbox.h │ ├── meson.build │ ├── nossl.c │ ├── openssl.c │ ├── openssl_ratbox.h │ ├── patricia.c │ ├── poll.c │ ├── ports.c │ ├── radixtree.c │ ├── rawbuf.c │ ├── rb_lib.c │ ├── rb_memory.c │ ├── select.c │ ├── sigio.c │ ├── tools.c │ ├── unix.c │ ├── version.c.SH │ └── win32.c ├── meson.build ├── meson_options.txt ├── modules ├── cap_account_tag.c ├── cap_prop_notify.c ├── cap_server_time.c ├── cap_sts.c ├── chm_nocolour.c ├── chm_noctcp.c ├── core │ ├── m_ban.c │ ├── m_die.c │ ├── m_error.c │ ├── m_join.c │ ├── m_kick.c │ ├── m_kill.c │ ├── m_message.c │ ├── m_mode.c │ ├── m_modules.c │ ├── m_nick.c │ ├── m_part.c │ ├── m_quit.c │ ├── m_server.c │ ├── m_squit.c │ └── meson.build ├── extb_account.c ├── extb_group.c ├── extb_ssl.c ├── m_accept.c ├── m_admin.c ├── m_alias.c ├── m_away.c ├── m_cap.c ├── m_capab.c ├── m_certfp.c ├── m_challenge.c ├── m_chghost.c ├── m_close.c ├── m_connect.c ├── m_dline.c ├── m_encap.c ├── m_etrace.c ├── m_grant.c ├── m_help.c ├── m_info.c ├── m_invite.c ├── m_ircx_access.c ├── m_ircx_base.c ├── m_ircx_prop.c ├── m_ircx_prop_adminkey.c ├── m_ircx_prop_entity_account.c ├── m_ircx_prop_entity_channel.c ├── m_ircx_prop_entity_user.c ├── m_ircx_prop_member_of.c ├── m_ircx_prop_onjoin.c ├── m_ircx_prop_opkey.c ├── m_ison.c ├── m_kline.c ├── m_knock.c ├── m_links.c ├── m_list.c ├── m_lusers.c ├── m_map.c ├── m_monitor.c ├── m_motd.c ├── m_names.c ├── m_oper.c ├── m_operspy.c ├── m_pass.c ├── m_ping.c ├── m_pong.c ├── m_post.c ├── m_privs.c ├── m_register.c ├── m_rehash.c ├── m_restart.c ├── m_resv.c ├── m_sasl_core.c ├── m_scan.c ├── m_services.c ├── m_set.c ├── m_signon.c ├── m_snote.c ├── m_starttls.c ├── m_stats.c ├── m_svinfo.c ├── m_tb.c ├── m_testline.c ├── m_testmask.c ├── m_tginfo.c ├── m_time.c ├── m_topic.c ├── m_trace.c ├── m_unreject.c ├── m_user.c ├── m_userhost.c ├── m_users.c ├── m_version.c ├── m_wallops.c ├── m_who.c ├── m_whois.c ├── m_whowas.c ├── m_xline.c ├── meson.build ├── sno_routing.c ├── um_callerid.c └── um_regonlymsg.c ├── scripts ├── application.sh └── makerelease.sh ├── ssld ├── meson.build └── ssld.c ├── tools ├── README.mkpasswd ├── genssl.in ├── meson.build ├── mkfingerprint.c ├── mkpasswd.c └── smoketest.sh └── wsockd ├── meson.build ├── sha1.c ├── sha1.h └── wsockd.c /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/.mailmap -------------------------------------------------------------------------------- /.ophion-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/README.md -------------------------------------------------------------------------------- /authd/authd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/authd.c -------------------------------------------------------------------------------- /authd/authd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/authd.h -------------------------------------------------------------------------------- /authd/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/dns.c -------------------------------------------------------------------------------- /authd/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/dns.h -------------------------------------------------------------------------------- /authd/getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/getaddrinfo.c -------------------------------------------------------------------------------- /authd/getaddrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/getaddrinfo.h -------------------------------------------------------------------------------- /authd/getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/getnameinfo.c -------------------------------------------------------------------------------- /authd/getnameinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/getnameinfo.h -------------------------------------------------------------------------------- /authd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/meson.build -------------------------------------------------------------------------------- /authd/notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/notice.c -------------------------------------------------------------------------------- /authd/notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/notice.h -------------------------------------------------------------------------------- /authd/provider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/provider.c -------------------------------------------------------------------------------- /authd/provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/provider.h -------------------------------------------------------------------------------- /authd/providers/dnsbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/providers/dnsbl.c -------------------------------------------------------------------------------- /authd/providers/ident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/providers/ident.c -------------------------------------------------------------------------------- /authd/providers/opm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/providers/opm.c -------------------------------------------------------------------------------- /authd/providers/rdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/providers/rdns.c -------------------------------------------------------------------------------- /authd/res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/res.c -------------------------------------------------------------------------------- /authd/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/res.h -------------------------------------------------------------------------------- /authd/reslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/reslib.c -------------------------------------------------------------------------------- /authd/reslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/reslib.h -------------------------------------------------------------------------------- /authd/reslist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/authd/reslist.c -------------------------------------------------------------------------------- /bandb/bandb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/bandb/bandb.c -------------------------------------------------------------------------------- /bandb/bantool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/bandb/bantool.c -------------------------------------------------------------------------------- /bandb/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/bandb/meson.build -------------------------------------------------------------------------------- /bandb/rsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/bandb/rsdb.h -------------------------------------------------------------------------------- /bandb/rsdb_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/bandb/rsdb_snprintf.c -------------------------------------------------------------------------------- /bandb/rsdb_sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/bandb/rsdb_sqlite3.c -------------------------------------------------------------------------------- /bandb/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/bandb/sqlite3.c -------------------------------------------------------------------------------- /bandb/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/bandb/sqlite3.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/configure -------------------------------------------------------------------------------- /doc/credits-past.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/credits-past.txt -------------------------------------------------------------------------------- /doc/features/account-notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/account-notify.txt -------------------------------------------------------------------------------- /doc/features/away-notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/away-notify.txt -------------------------------------------------------------------------------- /doc/features/challenge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/challenge.txt -------------------------------------------------------------------------------- /doc/features/collision_fnc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/collision_fnc.txt -------------------------------------------------------------------------------- /doc/features/extban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/extban.txt -------------------------------------------------------------------------------- /doc/features/extended-join.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/extended-join.txt -------------------------------------------------------------------------------- /doc/features/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/index.txt -------------------------------------------------------------------------------- /doc/features/modeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/modeg.txt -------------------------------------------------------------------------------- /doc/features/monitor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/monitor.txt -------------------------------------------------------------------------------- /doc/features/sasl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/sasl.txt -------------------------------------------------------------------------------- /doc/features/services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/services.txt -------------------------------------------------------------------------------- /doc/features/tgchange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/features/tgchange.txt -------------------------------------------------------------------------------- /doc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/index.txt -------------------------------------------------------------------------------- /doc/ircd.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/ircd.conf.example -------------------------------------------------------------------------------- /doc/ircd.motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/ircd.motd -------------------------------------------------------------------------------- /doc/logfiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/logfiles.txt -------------------------------------------------------------------------------- /doc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/meson.build -------------------------------------------------------------------------------- /doc/modes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/modes.txt -------------------------------------------------------------------------------- /doc/oper-guide/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /doc/oper-guide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/Makefile -------------------------------------------------------------------------------- /doc/oper-guide/cmodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/cmodes.rst -------------------------------------------------------------------------------- /doc/oper-guide/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/commands.rst -------------------------------------------------------------------------------- /doc/oper-guide/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/conf.py -------------------------------------------------------------------------------- /doc/oper-guide/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/config.rst -------------------------------------------------------------------------------- /doc/oper-guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/index.rst -------------------------------------------------------------------------------- /doc/oper-guide/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/intro.rst -------------------------------------------------------------------------------- /doc/oper-guide/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/make.bat -------------------------------------------------------------------------------- /doc/oper-guide/oprivs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/oprivs.rst -------------------------------------------------------------------------------- /doc/oper-guide/ucommands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/ucommands.rst -------------------------------------------------------------------------------- /doc/oper-guide/umodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/oper-guide/umodes.rst -------------------------------------------------------------------------------- /doc/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/reference.conf -------------------------------------------------------------------------------- /doc/server-version-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/server-version-info.txt -------------------------------------------------------------------------------- /doc/technical/capab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/capab.txt -------------------------------------------------------------------------------- /doc/technical/cluster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/cluster.txt -------------------------------------------------------------------------------- /doc/technical/euid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/euid.txt -------------------------------------------------------------------------------- /doc/technical/event.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/event.txt -------------------------------------------------------------------------------- /doc/technical/hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/hooks.txt -------------------------------------------------------------------------------- /doc/technical/hostmask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/hostmask.txt -------------------------------------------------------------------------------- /doc/technical/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/index.txt -------------------------------------------------------------------------------- /doc/technical/linebuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/linebuf.txt -------------------------------------------------------------------------------- /doc/technical/ts6-protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/doc/technical/ts6-protocol.txt -------------------------------------------------------------------------------- /extensions/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/README -------------------------------------------------------------------------------- /extensions/chantype_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chantype_dummy.c -------------------------------------------------------------------------------- /extensions/chm_adminonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chm_adminonly.c -------------------------------------------------------------------------------- /extensions/chm_insecure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chm_insecure.c -------------------------------------------------------------------------------- /extensions/chm_nonotice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chm_nonotice.c -------------------------------------------------------------------------------- /extensions/chm_operonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chm_operonly.c -------------------------------------------------------------------------------- /extensions/chm_operonly_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chm_operonly_compat.c -------------------------------------------------------------------------------- /extensions/chm_operpeace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chm_operpeace.c -------------------------------------------------------------------------------- /extensions/chm_sslonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chm_sslonly.c -------------------------------------------------------------------------------- /extensions/chm_sslonly_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/chm_sslonly_compat.c -------------------------------------------------------------------------------- /extensions/createauthonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/createauthonly.c -------------------------------------------------------------------------------- /extensions/createoperonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/createoperonly.c -------------------------------------------------------------------------------- /extensions/drain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/drain.c -------------------------------------------------------------------------------- /extensions/example_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/example_module.c -------------------------------------------------------------------------------- /extensions/extb_canjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_canjoin.c -------------------------------------------------------------------------------- /extensions/extb_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_channel.c -------------------------------------------------------------------------------- /extensions/extb_combi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_combi.c -------------------------------------------------------------------------------- /extensions/extb_extgecos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_extgecos.c -------------------------------------------------------------------------------- /extensions/extb_hostmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_hostmask.c -------------------------------------------------------------------------------- /extensions/extb_oper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_oper.c -------------------------------------------------------------------------------- /extensions/extb_realname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_realname.c -------------------------------------------------------------------------------- /extensions/extb_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_server.c -------------------------------------------------------------------------------- /extensions/extb_usermode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/extb_usermode.c -------------------------------------------------------------------------------- /extensions/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/filter.c -------------------------------------------------------------------------------- /extensions/force_user_invis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/force_user_invis.c -------------------------------------------------------------------------------- /extensions/helpops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/helpops.c -------------------------------------------------------------------------------- /extensions/hide_uncommon_channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/hide_uncommon_channels.c -------------------------------------------------------------------------------- /extensions/hurt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/hurt.c -------------------------------------------------------------------------------- /extensions/invite_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/invite_notify.c -------------------------------------------------------------------------------- /extensions/ip_cloaking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/ip_cloaking.c -------------------------------------------------------------------------------- /extensions/ip_cloaking_3.0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/ip_cloaking_3.0.c -------------------------------------------------------------------------------- /extensions/ip_cloaking_4.0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/ip_cloaking_4.0.c -------------------------------------------------------------------------------- /extensions/ip_cloaking_old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/ip_cloaking_old.c -------------------------------------------------------------------------------- /extensions/m_adminwall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_adminwall.c -------------------------------------------------------------------------------- /extensions/m_echotags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_echotags.c -------------------------------------------------------------------------------- /extensions/m_extendchans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_extendchans.c -------------------------------------------------------------------------------- /extensions/m_findforwards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_findforwards.c -------------------------------------------------------------------------------- /extensions/m_identify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_identify.c -------------------------------------------------------------------------------- /extensions/m_locops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_locops.c -------------------------------------------------------------------------------- /extensions/m_mkpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_mkpasswd.c -------------------------------------------------------------------------------- /extensions/m_ojoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_ojoin.c -------------------------------------------------------------------------------- /extensions/m_okick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_okick.c -------------------------------------------------------------------------------- /extensions/m_omode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_omode.c -------------------------------------------------------------------------------- /extensions/m_opme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_opme.c -------------------------------------------------------------------------------- /extensions/m_roleplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_roleplay.c -------------------------------------------------------------------------------- /extensions/m_sendbans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/m_sendbans.c -------------------------------------------------------------------------------- /extensions/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/meson.build -------------------------------------------------------------------------------- /extensions/no_kill_services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/no_kill_services.c -------------------------------------------------------------------------------- /extensions/no_locops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/no_locops.c -------------------------------------------------------------------------------- /extensions/no_oper_invis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/no_oper_invis.c -------------------------------------------------------------------------------- /extensions/override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/override.c -------------------------------------------------------------------------------- /extensions/override_kick_immunity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/override_kick_immunity.c -------------------------------------------------------------------------------- /extensions/restrict-unauthenticated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/restrict-unauthenticated.c -------------------------------------------------------------------------------- /extensions/sasl_usercloak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/sasl_usercloak.c -------------------------------------------------------------------------------- /extensions/sno_channelcreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/sno_channelcreate.c -------------------------------------------------------------------------------- /extensions/sno_farconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/sno_farconnect.c -------------------------------------------------------------------------------- /extensions/sno_globalkline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/sno_globalkline.c -------------------------------------------------------------------------------- /extensions/sno_globalnickchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/sno_globalnickchange.c -------------------------------------------------------------------------------- /extensions/sno_globaloper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/sno_globaloper.c -------------------------------------------------------------------------------- /extensions/sno_whois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/sno_whois.c -------------------------------------------------------------------------------- /extensions/spy_admin_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/spy_admin_notice.c -------------------------------------------------------------------------------- /extensions/spy_info_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/spy_info_notice.c -------------------------------------------------------------------------------- /extensions/spy_links_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/spy_links_notice.c -------------------------------------------------------------------------------- /extensions/spy_motd_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/spy_motd_notice.c -------------------------------------------------------------------------------- /extensions/spy_stats_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/spy_stats_notice.c -------------------------------------------------------------------------------- /extensions/spy_stats_p_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/spy_stats_p_notice.c -------------------------------------------------------------------------------- /extensions/spy_trace_notice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/spy_trace_notice.c -------------------------------------------------------------------------------- /extensions/umode_noctcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/extensions/umode_noctcp.c -------------------------------------------------------------------------------- /help/gen-help-index.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Help topics available to $1:" >> $3 3 | -------------------------------------------------------------------------------- /help/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/meson.build -------------------------------------------------------------------------------- /help/opers.cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers.cmds -------------------------------------------------------------------------------- /help/opers/accept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/accept -------------------------------------------------------------------------------- /help/opers/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/admin -------------------------------------------------------------------------------- /help/opers/away: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/away -------------------------------------------------------------------------------- /help/opers/capab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/capab -------------------------------------------------------------------------------- /help/opers/challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/challenge -------------------------------------------------------------------------------- /help/opers/chantrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/chantrace -------------------------------------------------------------------------------- /help/opers/close: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/close -------------------------------------------------------------------------------- /help/opers/cmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/cmode -------------------------------------------------------------------------------- /help/opers/connect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/connect -------------------------------------------------------------------------------- /help/opers/credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/credits -------------------------------------------------------------------------------- /help/opers/die: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/die -------------------------------------------------------------------------------- /help/opers/dline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/dline -------------------------------------------------------------------------------- /help/opers/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/error -------------------------------------------------------------------------------- /help/opers/etrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/etrace -------------------------------------------------------------------------------- /help/opers/extban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/extban -------------------------------------------------------------------------------- /help/opers/grant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/grant -------------------------------------------------------------------------------- /help/opers/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/help -------------------------------------------------------------------------------- /help/opers/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/index -------------------------------------------------------------------------------- /help/opers/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/info -------------------------------------------------------------------------------- /help/opers/invite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/invite -------------------------------------------------------------------------------- /help/opers/ison: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/ison -------------------------------------------------------------------------------- /help/opers/join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/join -------------------------------------------------------------------------------- /help/opers/kick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/kick -------------------------------------------------------------------------------- /help/opers/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/kill -------------------------------------------------------------------------------- /help/opers/kline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/kline -------------------------------------------------------------------------------- /help/opers/knock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/knock -------------------------------------------------------------------------------- /help/opers/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/links -------------------------------------------------------------------------------- /help/opers/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/list -------------------------------------------------------------------------------- /help/opers/locops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/locops -------------------------------------------------------------------------------- /help/opers/lusers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/lusers -------------------------------------------------------------------------------- /help/opers/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/map -------------------------------------------------------------------------------- /help/opers/masktrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/masktrace -------------------------------------------------------------------------------- /help/opers/modlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/modlist -------------------------------------------------------------------------------- /help/opers/modload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/modload -------------------------------------------------------------------------------- /help/opers/modreload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/modreload -------------------------------------------------------------------------------- /help/opers/modrestart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/modrestart -------------------------------------------------------------------------------- /help/opers/modunload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/modunload -------------------------------------------------------------------------------- /help/opers/monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/monitor -------------------------------------------------------------------------------- /help/opers/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/motd -------------------------------------------------------------------------------- /help/opers/names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/names -------------------------------------------------------------------------------- /help/opers/nick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/nick -------------------------------------------------------------------------------- /help/opers/notice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/notice -------------------------------------------------------------------------------- /help/opers/oper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/oper -------------------------------------------------------------------------------- /help/opers/operspy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/operspy -------------------------------------------------------------------------------- /help/opers/operwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/operwall -------------------------------------------------------------------------------- /help/opers/part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/part -------------------------------------------------------------------------------- /help/opers/pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/pass -------------------------------------------------------------------------------- /help/opers/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/ping -------------------------------------------------------------------------------- /help/opers/pong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/pong -------------------------------------------------------------------------------- /help/opers/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/post -------------------------------------------------------------------------------- /help/opers/privmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/privmsg -------------------------------------------------------------------------------- /help/opers/privs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/privs -------------------------------------------------------------------------------- /help/opers/quit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/quit -------------------------------------------------------------------------------- /help/opers/rehash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/rehash -------------------------------------------------------------------------------- /help/opers/restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/restart -------------------------------------------------------------------------------- /help/opers/resv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/resv -------------------------------------------------------------------------------- /help/opers/scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/scan -------------------------------------------------------------------------------- /help/opers/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/server -------------------------------------------------------------------------------- /help/opers/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/set -------------------------------------------------------------------------------- /help/opers/sjoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/sjoin -------------------------------------------------------------------------------- /help/opers/snomask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/snomask -------------------------------------------------------------------------------- /help/opers/squit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/squit -------------------------------------------------------------------------------- /help/opers/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/stats -------------------------------------------------------------------------------- /help/opers/svinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/svinfo -------------------------------------------------------------------------------- /help/opers/testgecos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/testgecos -------------------------------------------------------------------------------- /help/opers/testline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/testline -------------------------------------------------------------------------------- /help/opers/testmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/testmask -------------------------------------------------------------------------------- /help/opers/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/time -------------------------------------------------------------------------------- /help/opers/topic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/topic -------------------------------------------------------------------------------- /help/opers/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/trace -------------------------------------------------------------------------------- /help/opers/uhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/uhelp -------------------------------------------------------------------------------- /help/opers/umode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/umode -------------------------------------------------------------------------------- /help/opers/undline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/undline -------------------------------------------------------------------------------- /help/opers/unkline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/unkline -------------------------------------------------------------------------------- /help/opers/unreject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/unreject -------------------------------------------------------------------------------- /help/opers/unresv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/unresv -------------------------------------------------------------------------------- /help/opers/unxline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/unxline -------------------------------------------------------------------------------- /help/opers/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/user -------------------------------------------------------------------------------- /help/opers/userhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/userhost -------------------------------------------------------------------------------- /help/opers/users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/users -------------------------------------------------------------------------------- /help/opers/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/version -------------------------------------------------------------------------------- /help/opers/wallops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/wallops -------------------------------------------------------------------------------- /help/opers/who: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/who -------------------------------------------------------------------------------- /help/opers/whois: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/whois -------------------------------------------------------------------------------- /help/opers/whowas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/whowas -------------------------------------------------------------------------------- /help/opers/xline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/opers/xline -------------------------------------------------------------------------------- /help/users.cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/users.cmds -------------------------------------------------------------------------------- /help/users/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/users/index -------------------------------------------------------------------------------- /help/users/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/users/info -------------------------------------------------------------------------------- /help/users/notice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/users/notice -------------------------------------------------------------------------------- /help/users/privmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/users/privmsg -------------------------------------------------------------------------------- /help/users/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/users/stats -------------------------------------------------------------------------------- /help/users/umode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/help/users/umode -------------------------------------------------------------------------------- /include/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/account.h -------------------------------------------------------------------------------- /include/authproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/authproc.h -------------------------------------------------------------------------------- /include/bandbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/bandbi.h -------------------------------------------------------------------------------- /include/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/cache.h -------------------------------------------------------------------------------- /include/capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/capability.h -------------------------------------------------------------------------------- /include/certfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/certfp.h -------------------------------------------------------------------------------- /include/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/channel.h -------------------------------------------------------------------------------- /include/channel_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/channel_access.h -------------------------------------------------------------------------------- /include/chmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/chmode.h -------------------------------------------------------------------------------- /include/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/class.h -------------------------------------------------------------------------------- /include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/client.h -------------------------------------------------------------------------------- /include/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/defaults.h -------------------------------------------------------------------------------- /include/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/dns.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/hook.h -------------------------------------------------------------------------------- /include/hostmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/hostmask.h -------------------------------------------------------------------------------- /include/inline/stringops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/inline/stringops.h -------------------------------------------------------------------------------- /include/ircd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/ircd.h -------------------------------------------------------------------------------- /include/ircd_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/ircd_defs.h -------------------------------------------------------------------------------- /include/ircd_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/ircd_getopt.h -------------------------------------------------------------------------------- /include/ircd_linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/ircd_linker.h -------------------------------------------------------------------------------- /include/ircd_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/ircd_signal.h -------------------------------------------------------------------------------- /include/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/listener.h -------------------------------------------------------------------------------- /include/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/logger.h -------------------------------------------------------------------------------- /include/m_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/m_info.h -------------------------------------------------------------------------------- /include/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/match.h -------------------------------------------------------------------------------- /include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/meson.build -------------------------------------------------------------------------------- /include/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/messages.h -------------------------------------------------------------------------------- /include/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/modules.h -------------------------------------------------------------------------------- /include/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/monitor.h -------------------------------------------------------------------------------- /include/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/msg.h -------------------------------------------------------------------------------- /include/msgbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/msgbuf.h -------------------------------------------------------------------------------- /include/newconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/newconf.h -------------------------------------------------------------------------------- /include/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/numeric.h -------------------------------------------------------------------------------- /include/operhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/operhash.h -------------------------------------------------------------------------------- /include/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/packet.h -------------------------------------------------------------------------------- /include/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/parse.h -------------------------------------------------------------------------------- /include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/patchlevel.h -------------------------------------------------------------------------------- /include/privilege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/privilege.h -------------------------------------------------------------------------------- /include/propertyset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/propertyset.h -------------------------------------------------------------------------------- /include/ratelimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/ratelimit.h -------------------------------------------------------------------------------- /include/reject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/reject.h -------------------------------------------------------------------------------- /include/restart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/restart.h -------------------------------------------------------------------------------- /include/s_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/s_assert.h -------------------------------------------------------------------------------- /include/s_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/s_conf.h -------------------------------------------------------------------------------- /include/s_newconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/s_newconf.h -------------------------------------------------------------------------------- /include/s_serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/s_serv.h -------------------------------------------------------------------------------- /include/s_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/s_stats.h -------------------------------------------------------------------------------- /include/s_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/s_user.h -------------------------------------------------------------------------------- /include/sasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/sasl.h -------------------------------------------------------------------------------- /include/scache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/scache.h -------------------------------------------------------------------------------- /include/send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/send.h -------------------------------------------------------------------------------- /include/serno.h.SH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/serno.h.SH -------------------------------------------------------------------------------- /include/setup.h.meson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/setup.h.meson -------------------------------------------------------------------------------- /include/snomask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/snomask.h -------------------------------------------------------------------------------- /include/sslproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/sslproc.h -------------------------------------------------------------------------------- /include/stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/stdinc.h -------------------------------------------------------------------------------- /include/substitution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/substitution.h -------------------------------------------------------------------------------- /include/supported.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/supported.h -------------------------------------------------------------------------------- /include/tgchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/tgchange.h -------------------------------------------------------------------------------- /include/whowas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/whowas.h -------------------------------------------------------------------------------- /include/wsproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/include/wsproc.h -------------------------------------------------------------------------------- /ircd/account.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/account.c -------------------------------------------------------------------------------- /ircd/authproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/authproc.c -------------------------------------------------------------------------------- /ircd/bandbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/bandbi.c -------------------------------------------------------------------------------- /ircd/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/cache.c -------------------------------------------------------------------------------- /ircd/capability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/capability.c -------------------------------------------------------------------------------- /ircd/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/channel.c -------------------------------------------------------------------------------- /ircd/channel_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/channel_access.c -------------------------------------------------------------------------------- /ircd/chmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/chmode.c -------------------------------------------------------------------------------- /ircd/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/class.c -------------------------------------------------------------------------------- /ircd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/client.c -------------------------------------------------------------------------------- /ircd/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/dns.c -------------------------------------------------------------------------------- /ircd/extban.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/extban.c -------------------------------------------------------------------------------- /ircd/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/getopt.c -------------------------------------------------------------------------------- /ircd/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/hash.c -------------------------------------------------------------------------------- /ircd/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/hook.c -------------------------------------------------------------------------------- /ircd/hostmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/hostmask.c -------------------------------------------------------------------------------- /ircd/ircd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/ircd.c -------------------------------------------------------------------------------- /ircd/ircd_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/ircd_lexer.l -------------------------------------------------------------------------------- /ircd/ircd_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/ircd_parser.y -------------------------------------------------------------------------------- /ircd/ircd_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/ircd_signal.c -------------------------------------------------------------------------------- /ircd/listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/listener.c -------------------------------------------------------------------------------- /ircd/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/logger.c -------------------------------------------------------------------------------- /ircd/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/match.c -------------------------------------------------------------------------------- /ircd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/meson.build -------------------------------------------------------------------------------- /ircd/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/modules.c -------------------------------------------------------------------------------- /ircd/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/monitor.c -------------------------------------------------------------------------------- /ircd/msgbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/msgbuf.c -------------------------------------------------------------------------------- /ircd/newconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/newconf.c -------------------------------------------------------------------------------- /ircd/operhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/operhash.c -------------------------------------------------------------------------------- /ircd/ophion/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/ophion/main.c -------------------------------------------------------------------------------- /ircd/ophion/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/ophion/meson.build -------------------------------------------------------------------------------- /ircd/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/packet.c -------------------------------------------------------------------------------- /ircd/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/parse.c -------------------------------------------------------------------------------- /ircd/privilege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/privilege.c -------------------------------------------------------------------------------- /ircd/propertyset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/propertyset.c -------------------------------------------------------------------------------- /ircd/ratelimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/ratelimit.c -------------------------------------------------------------------------------- /ircd/reject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/reject.c -------------------------------------------------------------------------------- /ircd/restart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/restart.c -------------------------------------------------------------------------------- /ircd/s_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/s_conf.c -------------------------------------------------------------------------------- /ircd/s_newconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/s_newconf.c -------------------------------------------------------------------------------- /ircd/s_serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/s_serv.c -------------------------------------------------------------------------------- /ircd/s_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/s_user.c -------------------------------------------------------------------------------- /ircd/scache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/scache.c -------------------------------------------------------------------------------- /ircd/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/send.c -------------------------------------------------------------------------------- /ircd/snomask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/snomask.c -------------------------------------------------------------------------------- /ircd/sslproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/sslproc.c -------------------------------------------------------------------------------- /ircd/substitution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/substitution.c -------------------------------------------------------------------------------- /ircd/supported.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/supported.c -------------------------------------------------------------------------------- /ircd/tgchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/tgchange.c -------------------------------------------------------------------------------- /ircd/version.c.SH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/version.c.SH -------------------------------------------------------------------------------- /ircd/whowas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/whowas.c -------------------------------------------------------------------------------- /ircd/wsproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ircd/wsproc.c -------------------------------------------------------------------------------- /librb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/COPYING -------------------------------------------------------------------------------- /librb/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/CREDITS -------------------------------------------------------------------------------- /librb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/README.md -------------------------------------------------------------------------------- /librb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/TODO -------------------------------------------------------------------------------- /librb/include/arc4random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/arc4random.h -------------------------------------------------------------------------------- /librb/include/commio-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/commio-int.h -------------------------------------------------------------------------------- /librb/include/commio-ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/commio-ssl.h -------------------------------------------------------------------------------- /librb/include/event-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/event-int.h -------------------------------------------------------------------------------- /librb/include/librb-config.h.meson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/librb-config.h.meson -------------------------------------------------------------------------------- /librb/include/librb_config.h.meson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/librb_config.h.meson -------------------------------------------------------------------------------- /librb/include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/meson.build -------------------------------------------------------------------------------- /librb/include/rb_balloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_balloc.h -------------------------------------------------------------------------------- /librb/include/rb_commio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_commio.h -------------------------------------------------------------------------------- /librb/include/rb_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_dictionary.h -------------------------------------------------------------------------------- /librb/include/rb_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_event.h -------------------------------------------------------------------------------- /librb/include/rb_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_helper.h -------------------------------------------------------------------------------- /librb/include/rb_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_lib.h -------------------------------------------------------------------------------- /librb/include/rb_linebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_linebuf.h -------------------------------------------------------------------------------- /librb/include/rb_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_memory.h -------------------------------------------------------------------------------- /librb/include/rb_patricia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_patricia.h -------------------------------------------------------------------------------- /librb/include/rb_radixtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_radixtree.h -------------------------------------------------------------------------------- /librb/include/rb_rawbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_rawbuf.h -------------------------------------------------------------------------------- /librb/include/rb_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/rb_tools.h -------------------------------------------------------------------------------- /librb/include/serno.h.SH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/include/serno.h.SH -------------------------------------------------------------------------------- /librb/librb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/librb.pc.in -------------------------------------------------------------------------------- /librb/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/meson.build -------------------------------------------------------------------------------- /librb/src/arc4random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/arc4random.c -------------------------------------------------------------------------------- /librb/src/balloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/balloc.c -------------------------------------------------------------------------------- /librb/src/commio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/commio.c -------------------------------------------------------------------------------- /librb/src/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/crypt.c -------------------------------------------------------------------------------- /librb/src/devpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/devpoll.c -------------------------------------------------------------------------------- /librb/src/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/dictionary.c -------------------------------------------------------------------------------- /librb/src/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/epoll.c -------------------------------------------------------------------------------- /librb/src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/event.c -------------------------------------------------------------------------------- /librb/src/export-syms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/export-syms.txt -------------------------------------------------------------------------------- /librb/src/gnutls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/gnutls.c -------------------------------------------------------------------------------- /librb/src/gnutls_ratbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/gnutls_ratbox.h -------------------------------------------------------------------------------- /librb/src/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/helper.c -------------------------------------------------------------------------------- /librb/src/kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/kqueue.c -------------------------------------------------------------------------------- /librb/src/linebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/linebuf.c -------------------------------------------------------------------------------- /librb/src/mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/mbedtls.c -------------------------------------------------------------------------------- /librb/src/mbedtls_ratbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/mbedtls_ratbox.h -------------------------------------------------------------------------------- /librb/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/meson.build -------------------------------------------------------------------------------- /librb/src/nossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/nossl.c -------------------------------------------------------------------------------- /librb/src/openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/openssl.c -------------------------------------------------------------------------------- /librb/src/openssl_ratbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/openssl_ratbox.h -------------------------------------------------------------------------------- /librb/src/patricia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/patricia.c -------------------------------------------------------------------------------- /librb/src/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/poll.c -------------------------------------------------------------------------------- /librb/src/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/ports.c -------------------------------------------------------------------------------- /librb/src/radixtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/radixtree.c -------------------------------------------------------------------------------- /librb/src/rawbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/rawbuf.c -------------------------------------------------------------------------------- /librb/src/rb_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/rb_lib.c -------------------------------------------------------------------------------- /librb/src/rb_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/rb_memory.c -------------------------------------------------------------------------------- /librb/src/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/select.c -------------------------------------------------------------------------------- /librb/src/sigio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/sigio.c -------------------------------------------------------------------------------- /librb/src/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/tools.c -------------------------------------------------------------------------------- /librb/src/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/unix.c -------------------------------------------------------------------------------- /librb/src/version.c.SH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/version.c.SH -------------------------------------------------------------------------------- /librb/src/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/librb/src/win32.c -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/meson_options.txt -------------------------------------------------------------------------------- /modules/cap_account_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/cap_account_tag.c -------------------------------------------------------------------------------- /modules/cap_prop_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/cap_prop_notify.c -------------------------------------------------------------------------------- /modules/cap_server_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/cap_server_time.c -------------------------------------------------------------------------------- /modules/cap_sts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/cap_sts.c -------------------------------------------------------------------------------- /modules/chm_nocolour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/chm_nocolour.c -------------------------------------------------------------------------------- /modules/chm_noctcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/chm_noctcp.c -------------------------------------------------------------------------------- /modules/core/m_ban.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_ban.c -------------------------------------------------------------------------------- /modules/core/m_die.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_die.c -------------------------------------------------------------------------------- /modules/core/m_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_error.c -------------------------------------------------------------------------------- /modules/core/m_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_join.c -------------------------------------------------------------------------------- /modules/core/m_kick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_kick.c -------------------------------------------------------------------------------- /modules/core/m_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_kill.c -------------------------------------------------------------------------------- /modules/core/m_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_message.c -------------------------------------------------------------------------------- /modules/core/m_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_mode.c -------------------------------------------------------------------------------- /modules/core/m_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_modules.c -------------------------------------------------------------------------------- /modules/core/m_nick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_nick.c -------------------------------------------------------------------------------- /modules/core/m_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_part.c -------------------------------------------------------------------------------- /modules/core/m_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_quit.c -------------------------------------------------------------------------------- /modules/core/m_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_server.c -------------------------------------------------------------------------------- /modules/core/m_squit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/m_squit.c -------------------------------------------------------------------------------- /modules/core/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/core/meson.build -------------------------------------------------------------------------------- /modules/extb_account.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/extb_account.c -------------------------------------------------------------------------------- /modules/extb_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/extb_group.c -------------------------------------------------------------------------------- /modules/extb_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/extb_ssl.c -------------------------------------------------------------------------------- /modules/m_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_accept.c -------------------------------------------------------------------------------- /modules/m_admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_admin.c -------------------------------------------------------------------------------- /modules/m_alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_alias.c -------------------------------------------------------------------------------- /modules/m_away.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_away.c -------------------------------------------------------------------------------- /modules/m_cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_cap.c -------------------------------------------------------------------------------- /modules/m_capab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_capab.c -------------------------------------------------------------------------------- /modules/m_certfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_certfp.c -------------------------------------------------------------------------------- /modules/m_challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_challenge.c -------------------------------------------------------------------------------- /modules/m_chghost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_chghost.c -------------------------------------------------------------------------------- /modules/m_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_close.c -------------------------------------------------------------------------------- /modules/m_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_connect.c -------------------------------------------------------------------------------- /modules/m_dline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_dline.c -------------------------------------------------------------------------------- /modules/m_encap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_encap.c -------------------------------------------------------------------------------- /modules/m_etrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_etrace.c -------------------------------------------------------------------------------- /modules/m_grant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_grant.c -------------------------------------------------------------------------------- /modules/m_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_help.c -------------------------------------------------------------------------------- /modules/m_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_info.c -------------------------------------------------------------------------------- /modules/m_invite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_invite.c -------------------------------------------------------------------------------- /modules/m_ircx_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_access.c -------------------------------------------------------------------------------- /modules/m_ircx_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_base.c -------------------------------------------------------------------------------- /modules/m_ircx_prop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_prop.c -------------------------------------------------------------------------------- /modules/m_ircx_prop_adminkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_prop_adminkey.c -------------------------------------------------------------------------------- /modules/m_ircx_prop_entity_account.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_prop_entity_account.c -------------------------------------------------------------------------------- /modules/m_ircx_prop_entity_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_prop_entity_channel.c -------------------------------------------------------------------------------- /modules/m_ircx_prop_entity_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_prop_entity_user.c -------------------------------------------------------------------------------- /modules/m_ircx_prop_member_of.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_prop_member_of.c -------------------------------------------------------------------------------- /modules/m_ircx_prop_onjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_prop_onjoin.c -------------------------------------------------------------------------------- /modules/m_ircx_prop_opkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ircx_prop_opkey.c -------------------------------------------------------------------------------- /modules/m_ison.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ison.c -------------------------------------------------------------------------------- /modules/m_kline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_kline.c -------------------------------------------------------------------------------- /modules/m_knock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_knock.c -------------------------------------------------------------------------------- /modules/m_links.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_links.c -------------------------------------------------------------------------------- /modules/m_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_list.c -------------------------------------------------------------------------------- /modules/m_lusers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_lusers.c -------------------------------------------------------------------------------- /modules/m_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_map.c -------------------------------------------------------------------------------- /modules/m_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_monitor.c -------------------------------------------------------------------------------- /modules/m_motd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_motd.c -------------------------------------------------------------------------------- /modules/m_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_names.c -------------------------------------------------------------------------------- /modules/m_oper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_oper.c -------------------------------------------------------------------------------- /modules/m_operspy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_operspy.c -------------------------------------------------------------------------------- /modules/m_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_pass.c -------------------------------------------------------------------------------- /modules/m_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_ping.c -------------------------------------------------------------------------------- /modules/m_pong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_pong.c -------------------------------------------------------------------------------- /modules/m_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_post.c -------------------------------------------------------------------------------- /modules/m_privs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_privs.c -------------------------------------------------------------------------------- /modules/m_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_register.c -------------------------------------------------------------------------------- /modules/m_rehash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_rehash.c -------------------------------------------------------------------------------- /modules/m_restart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_restart.c -------------------------------------------------------------------------------- /modules/m_resv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_resv.c -------------------------------------------------------------------------------- /modules/m_sasl_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_sasl_core.c -------------------------------------------------------------------------------- /modules/m_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_scan.c -------------------------------------------------------------------------------- /modules/m_services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_services.c -------------------------------------------------------------------------------- /modules/m_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_set.c -------------------------------------------------------------------------------- /modules/m_signon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_signon.c -------------------------------------------------------------------------------- /modules/m_snote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_snote.c -------------------------------------------------------------------------------- /modules/m_starttls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_starttls.c -------------------------------------------------------------------------------- /modules/m_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_stats.c -------------------------------------------------------------------------------- /modules/m_svinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_svinfo.c -------------------------------------------------------------------------------- /modules/m_tb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_tb.c -------------------------------------------------------------------------------- /modules/m_testline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_testline.c -------------------------------------------------------------------------------- /modules/m_testmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_testmask.c -------------------------------------------------------------------------------- /modules/m_tginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_tginfo.c -------------------------------------------------------------------------------- /modules/m_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_time.c -------------------------------------------------------------------------------- /modules/m_topic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_topic.c -------------------------------------------------------------------------------- /modules/m_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_trace.c -------------------------------------------------------------------------------- /modules/m_unreject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_unreject.c -------------------------------------------------------------------------------- /modules/m_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_user.c -------------------------------------------------------------------------------- /modules/m_userhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_userhost.c -------------------------------------------------------------------------------- /modules/m_users.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_users.c -------------------------------------------------------------------------------- /modules/m_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_version.c -------------------------------------------------------------------------------- /modules/m_wallops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_wallops.c -------------------------------------------------------------------------------- /modules/m_who.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_who.c -------------------------------------------------------------------------------- /modules/m_whois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_whois.c -------------------------------------------------------------------------------- /modules/m_whowas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_whowas.c -------------------------------------------------------------------------------- /modules/m_xline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/m_xline.c -------------------------------------------------------------------------------- /modules/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/meson.build -------------------------------------------------------------------------------- /modules/sno_routing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/sno_routing.c -------------------------------------------------------------------------------- /modules/um_callerid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/um_callerid.c -------------------------------------------------------------------------------- /modules/um_regonlymsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/modules/um_regonlymsg.c -------------------------------------------------------------------------------- /scripts/application.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/scripts/application.sh -------------------------------------------------------------------------------- /scripts/makerelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/scripts/makerelease.sh -------------------------------------------------------------------------------- /ssld/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ssld/meson.build -------------------------------------------------------------------------------- /ssld/ssld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/ssld/ssld.c -------------------------------------------------------------------------------- /tools/README.mkpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/tools/README.mkpasswd -------------------------------------------------------------------------------- /tools/genssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/tools/genssl.in -------------------------------------------------------------------------------- /tools/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/tools/meson.build -------------------------------------------------------------------------------- /tools/mkfingerprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/tools/mkfingerprint.c -------------------------------------------------------------------------------- /tools/mkpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/tools/mkpasswd.c -------------------------------------------------------------------------------- /tools/smoketest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/tools/smoketest.sh -------------------------------------------------------------------------------- /wsockd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/wsockd/meson.build -------------------------------------------------------------------------------- /wsockd/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/wsockd/sha1.c -------------------------------------------------------------------------------- /wsockd/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/wsockd/sha1.h -------------------------------------------------------------------------------- /wsockd/wsockd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophion-project/ophion/HEAD/wsockd/wsockd.c --------------------------------------------------------------------------------