| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> | 2021-06-21 | 1 | -5/+5 | |
| * | Update copyright headers. | 2021-03-05 | 1 | -1/+1 | |
| * | Avoid doing "IP changed" event stuff on quitting users. | 2020-11-20 | 1 | -1/+1 | |
| * | Make connect class debug logging more complete and consistent. | 2020-11-03 | 1 | -0/+4 | |
| * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| * | Fixes by misspell-fixer | 2020-04-21 | 1 | -2/+2 | |
| * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| * | Fix various documentation and formatting issues. | 2020-03-30 | 1 | -1/+1 | |
| * | Convert some things to HasFd that were previously missed. | 2020-02-19 | 1 | -2/+1 | |
| * | Add HasFd to EventHandler and switch code to use it. | 2020-02-15 | 1 | -1/+1 | |
| * | Update copyright headers. | 2020-01-11 | 1 | -4/+6 | |
| * | ident: fix erroneously prefixing an ident multiple times. | 2019-02-04 | 1 | -2/+37 | |
| * | ident: rename ext to socket. | 2019-02-04 | 1 | -7/+7 | |
| * | ident: rename nolookupprefix to prefixunqueried. | 2019-02-04 | 1 | -3/+3 | |
| * | ident: store the timeout as an unsigned value and limit to 60s. | 2019-02-04 | 1 | -4/+3 | |
| * | ident: reduce the amount of messages sent when a lookup fails. | 2019-02-04 | 1 | -2/+3 | |
| * | ident: Change idents with the ChangeIdent method. | 2019-02-04 | 1 | -2/+1 | |
| * | ident: Fix making idents longer than maxident when a lookup fails. | 2019-02-04 | 1 | -3/+23 | |
| * | Move ident lookups to the OnSetUserIP hook. | 2019-01-20 | 1 | -2/+14 | |
| * | Initial support for listening on UNIX socket endpoints. | 2018-07-18 | 1 | -0/+4 | |
| * | Add the family() member to the sockaddrs union. | 2018-07-18 | 1 | -3/+3 | |
| * | Pass an irc::socket::sockaddrs to SocketEngine::Connect(). | 2018-01-20 | 1 | -1/+1 | |
| * | Convert a bunch of time-related config options to getDuration. | 2017-09-03 | 1 | -1/+1 | |
| * | Dispatch EventHandler events to dedicated virtual functions•••Remove enum EventType | 2015-04-12 | 1 | -27/+8 | |
| * | Specify which Extensible subclass an ExtensionItem is valid for | 2015-01-18 | 1 | -1/+2 | |
| * | m_ident Close the ident socket when the object is culled instead of using hooks | 2014-05-28 | 1 | -22/+6 | |
| * | m_ident Make use of the min parameter of ConfigTag::getInt() | 2014-05-28 | 1 | -3/+1 | |
| * | m_ident: Add an option to allow idents of users to still be prefixed with a '...•••Fixes #683. Some changes by @attilamolnar, original PR #684 | 2014-05-28 | 1 | -1/+8 | |
| * | Remove redundant IS_LOCAL() checks discovered by static asserts | 2014-04-26 | 1 | -1/+1 | |
| * | Cull ident sockets instead of immediate delete, add stdalgo::culldeleter | 2014-03-24 | 1 | -1/+1 | |
| * | Call DelFd() and SetFd(-1) from SocketEngine::Close(EventHandler*) | 2014-02-09 | 1 | -3/+1 | |
| * | Change all socketengine methods to be static | 2014-02-08 | 1 | -5/+5 | |
| * | Change SocketEngine functions that do not require an instance to be static | 2014-02-08 | 1 | -4/+4 | |
| * | Merge insp20 | 2014-01-21 | 1 | -1/+1 | |
| |\ | |||||
| | * | Improve support for rarely used compilers, EKOPath in this case. | 2013-08-31 | 1 | -1/+1 | |
| * | | Clean up CoreException•••- Remove default constructor - Replace virtual functions returning C strings with functions returning const std::string refs | 2013-12-18 | 1 | -1/+1 | |
| * | | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -5/+0 | |
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init() | 2013-08-30 | 1 | -2/+1 | |
| * | | Accept std::string as parameter in User::ChangeHost(), ChangeIdent() and Chan...•••Pass the string itself to IsIdent() instead of string.c_str() | 2013-08-09 | 1 | -1/+1 | |
| * | | Automatically attach modules to events | 2013-08-04 | 1 | -5/+0 | |
| * | | Change modules to use the MODNAME constant when logging.•••The majority of modules were logging with their module name as the log type. There was a few places which were logging to a non-name type but, with the exception of CONFIG, those messages are so uncommon that it doesn't make sense to use a seperate type for them. | 2013-08-04 | 1 | -5/+5 | |
| * | | Remove a few not-so-useful debug messages | 2013-08-04 | 1 | -9/+0 | |
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| * | | Convert a ton of uses of MAXBUF to use a fixed buffer size. | 2013-06-06 | 1 | -2/+2 | |
| * | | Fix spacing in calls to LogManager::Log. | 2013-05-19 | 1 | -10/+10 | |
| * | | Tidy up keywords on module methods.•••- Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. | 2013-05-15 | 1 | -10/+10 | |
| * | | Add method for writing server notices.•••This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name. | 2013-05-14 | 1 | -4/+4 | |
| * | | Merge insp20 | 2013-04-28 | 1 | -0/+1 | |
| |\| | |||||
| | * | m_ident Invalidate cache after changing User::ident | 2013-04-19 | 1 | -0/+1 | |
