- m_svskill.c: cleanup ms_svskill(). args_min is 3 now. A TS argument is now always required, but it can be 0
- Stylistic changes
- Update copyright years
- Rename get_client_name() to client_get_name()
- Update copyright years
- Removed KILLLEN; use REASONLEN instead
- m_svskill.c: remove unused header include
- Now that we got time_t to work nicely on openbsd with snprintf's conversion specifiers, we ran into a similiar issue on Raspbian/ARMv7's time_t which is of signed 32 bit and doesn't cope at all with %j. Instead of doing tricks, get rid of time_t everywhere and forever and use uintmax_t instead which has at least a 'standardized' conversion specifier associated with it.
- Update copyright years
- Replaced a rather strange mixture of atoi(), atol(), and strtoul() with strtoimax(). ircd-hybrid should be 2038-safe now
- Use the %ju conversion specifier for time_t and get rid of these non-portable (unsigned long) casts; replace some uint64_t with uintmax_t
- m_svskill.c: use CONF_NOREASON as default reason just like in m_kill.c
- Use C99-style initializers in all struct Message items - Removed MFLG_SLOW - Removed DUMMY_HANDLER
- Removed useless zero initializers from the module_entry as suggested by Adam
- Update copyright years
- m_svskill.c:ms_svskill(): use KILLLEN instead of KICKLEN
- Update GPL 2 license headers
- Implemented pseudo {} blocks (service aliases)
- Fixed compile warnings with -Wmissing-field-initializers
- Moved files: s_user.c -> user.c s_misc.c -> misc.c s_serv.c -> server.c
- doxygen
- doxygen
- Cleanup more places where ID_or_name() is no longer necessary
- Incorporate Adam's exit_client/quit storm cleanups Note: QS is mandatory now
- Removed client_p pointers from everywhere
- Removed unused header includes here and there
- Applied Adam's "Put the command name in parv[0], not prefix name" patch
- Fixed improper use of the ID_or_name macro in several places
- Clean up all files in modules/ (fixed indentation, removed whitespaces/tabs) - Fixed copyright years - Made module handlers int type for later use
- m_svskill.c: replaced MyClient() test with MyConnect()
- Set SVN properties on m_svskill.c
- Added SVSKILL
This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.