summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2024-02-22Fix some oversights in commit 82fa7e1467.Sadie Powell
2024-02-22Fix the NickServ help message showing a wrong min password length.Sadie Powell
Closes #357.
2024-02-22Increase minpasslen and maxpasslen slightly.Sadie Powell
2024-02-22Convert protocol modules over to Uplink::Send.Sadie Powell
2024-02-22Rework SendModeInternal to be usable with Uplink::Send.Sadie Powell
2024-02-22Rework SendNumericInternal to be usable with Uplink::Send.Sadie Powell
2024-02-22Add Uplink::Send, rework message formatting.Sadie Powell
This is the new way of sending messages to the uplink inspired by the work done in the old git master. This will allow us to do new things involving tags in the future.
2024-02-21Fix a typo in cs_drop.TehPeGaSuS
2024-02-21Add a method to the ns_cert API for replacing a certificate.Sadie Powell
This will be used for upgrading certificate fingerprints when the InspIRCd 1206 protocol support is added.
2024-02-19Increase the size of the random codes in ns_register and ns_set.Sadie Powell
2024-02-19Require users to use a confirmation code when dropping channels.Sadie Powell
2024-02-17Merge branch '2.0' into 2.1.Sadie Powell
2024-02-17Update the copyright headers for 2024.Sadie Powell
2024-02-17Prevent resetting the password of suspended accounts.Sadie Powell
Closes #351.
2024-02-11Replace Condition and Mutex with the C++11 standard equivalents.Sadie Powell
2024-02-11Remove the time_t parameter from Tick and TickTimers.Sadie Powell
Most uses of Tick do not use the parameter and even when it is used it is always the same as CurTime.
2024-02-11Consistently use time_t for the timer duration.Sadie Powell
2024-02-11Remove the now parameter from the Timer class.Sadie Powell
This was never actually changed from the default.
2024-01-31Remove an extraneous space in cs_xop.Robby
2024-01-30Fix irc2sql and webcpanel not being put into the modules folder.Sadie Powell
2024-01-24Fix Clang and GCC disagreeing about whether a move is needed.Sadie Powell
2024-01-24Shuffle modules around a bit.Sadie Powell
2024-01-24Rename several modules to remove the m_ prefix.Sadie Powell
2024-01-23Mark types that have no inheritors as final.Sadie Powell
2024-01-23Improve the layout of types that inherit from another type.Sadie Powell
2024-01-11Fix some module names that were missed in commit 4056af00e3.Sadie Powell
2024-01-10Fix an oversight in build_subdir.Sadie Powell
2024-01-10Parse InspIRCd module names in a way which is 1206 compatible.Sadie Powell
2024-01-09Always build the stats modules.Sadie Powell
These have no external dependencies so it makes no sense to not always build them.
2024-01-09Bump the minimum OpenSSL version to 1.1.Sadie Powell
2024-01-09Always disable SSLv3 support, allow disabling TLSv1.[012].Sadie Powell
2024-01-09Drop support for ancient versions of GnuTLS.Sadie Powell
2024-01-09Update the default SSL filenames to use the Certbot names.Sadie Powell
2024-01-09Use native file extensions on macOS and Windows.Sadie Powell
2024-01-09Put modules into their own folder on Windows.Sadie Powell
2024-01-08Add a string overload of Channel::Kick.Sadie Powell
2024-01-08Add a string overload of User::SetModes.Sadie Powell
2024-01-08Add a string overload of Channel::SetModes.Sadie Powell
2024-01-08Fix various format string issues.Sadie Powell
2024-01-08Add a non-formatting overload of User::SetModesInternal.Sadie Powell
2024-01-08Mark format strings with the GNU printf attribute.Sadie Powell
2024-01-06Fix an oversight in the mysql module.Sadie Powell
2024-01-06Fix a sign conversion issue in the mysql module.Sadie Powell
2024-01-06Use auto in places where the type is unambiguous.Sadie Powell
2024-01-05Fix inconsistent capitalization of 'services'.Val Lorentz
2024-01-05Merge branch '2.0' into 2.1.Sadie Powell
2024-01-04Update the copyright headers for 2024.Sadie Powell
2024-01-01Fix a copy/paste error in the default channel settings.Sadie Powell
2023-12-21Remove an extraneous space in cs_xop.Sadie Powell
2023-12-20Merge branch '2.0' into 2.1.Sadie Powell