]> jfr.im git - irc/freenode/ircd-seven.git/blame - TODO
Keep propagated bans in a dictionary, not a list
[irc/freenode/ircd-seven.git] / TODO
CommitLineData
a2001bb3 1/ = in progress, x = done, ? = to be discussed, F = charybdis3.1 or next releases
638768c9
WP
2
3[/] finish legacy code removal
4 [x] remove 2.8 report_error() in ratbox imported stuff
056e3c60
VY
5 [F] client.c, channel.c is very 2.8 style still. it'd be nice to pack them into their own
6 namespace and such. moreover, the other 2.8 code needs similar rewriting/reworking too...
26914ddf 7 [x] merge m_join.c and m_sjoin.c in one module (same functions, done in ratbox3)
a8eb238f
WP
8 [ ] rewrite s_auth.c
9 [ ] authentication state/lock manager
10 [ ] move resolver/auth checker code into separated modules
6484936e 11[x] port to libratbox
638768c9 12 [x] get it running
6484936e
VY
13 [x] clean up maxconnections kludges &c
14 [x] in-process SSL
15 [x] port and use ratbox ssld for server links
033961a4 16 [x] merge with libratbox SVN
a8240d5c 17[x] ssl stuff
8cc12805
VY
18 [x] client-to-client ssl
19 [x] server-to-server ssl
20 [x] ssl usermode (+Z)
c84557ac 21 [x] ssl channelmode (done by extban and chm_compat)
020341c2 22 [x] tool for generating ssl certificates and other stuff
84843785 23 [x] gnutls backend for at least SSL connections (replacing libcrypto use in m_challenge would be nice too)
75f2de73 24[x] merge some stuff from ircd-seven directly (to be determined what)
1feeda91 25 [x] remote d:lines support
26914ddf 26 [x] PASS selector:password for auth{} (useful for dynamic IPs)
a89787bf 27[ ] kline/xline/resv sync (what about spb's extension?)
84843785 28[x] drop non-TS6 (legacy protocol) support
1a7848d8 29[?] Patch or core-feature - libguess on-fly any-charset-to-utf8 translation
a89787bf 30[x] module engine rework
b6b2691d 31 [?] MODULE_DEPEND and MODULE_CONFLICT for building extension dependencies (backport from shadowircd)
a89787bf 32 [x] more beautiful way of adding new channel modes by module
a8240d5c
WP
33 [x] basic functionality
34 [x] some example modules
a8240d5c 35 [x] another idea is too make that work with privilege groups, like "serveradmins" or "ircops"
020341c2 36 [ ] make nick/user/host validation functions/match tables able to work in separated modules,
a2001bb3 37 this will help us making support for native characters sets/slashes in host etc
020341c2
VY
38 [ ] auth checker module
39 [ ] resolver module
a8240d5c 40 [x] privilege system for privilege groups, something like
75f2de73 41 in .conf: helper { kill_global, rehash, kline_local }
3c77978b 42 in modules: privilege_add("kill_global"), has_privilege(source_p, "kill_global") etc, should work the way dynamic cflags/umodes done
a8240d5c 43 -- this is done kinda like this, but not really. See HasPrivilege() calls. privilege_add() was not needed ~nenolod
170703fe 44[x] Remove glines entirely
a8240d5c 45[/] test suite as in ircu
1c390fbd 46[?] win32
1c390fbd 47 [?] mingw support
b6b2691d 48 [R] win32 native support - VS doesn't follow C99, this will require us switching back to C89 with libratbox and (future) core
a89787bf 49[x] Bug fixes
a0ef73fa 50 [x] Compilation without zlib headers fails - fixed
bdd296d5 51 [x] Compilation date and time in server welcome message is in OS locale - looks ugly 'cause often it's not match user's codepage
df33f222
VY
52[ ] Improvments
53 [ ] ircd shouldn't need bison/byacc/yacc or flex for compilation
1feeda91 54--- other stuff
056e3c60
VY
55 [?] internally split out +o/+v "ranks" into a series of permissions. this could allow for configure-defined
56 special access levels, halfops, etc. (would need to match globally, somehow. extra SVINFO param?)
b6b2691d 57 might be backported from shadowircd in future (chanroles planned)
056e3c60 58 [?] somehow hide channel operators like ircnet can do?
b6b2691d 59 couldn't be done via extension currently - compilation-time option acceptable?
c84557ac 60 [x] create chmode.h and put there all declarations of chm_* - this will make some modules clean
b6b2691d 61 [?] Move oper override server WALLOPS to global server notices?