Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-22 | Merge tag 'v2.0.26' into master. | Peter Powell | |
2018-04-09 | Remove swhois messages set in the oper block on deoper. | Peter Powell | |
Closes #1240. | |||
2018-04-09 | Optimize some behaviour in the core (#1476). | Dylan Frank | |
2018-01-25 | Improve performance under load of OnDataReady and remove C-isms. | systocrat | |
Re-use variables initialized within loop, const-ify config variables accessed repeatedly, remove eol_found label. Merges #1451. | |||
2018-01-20 | Remove duplicated code in LocalUser::GetServerPort(). | Peter Powell | |
2017-12-23 | Fix User::ChangeRealHost() to change the real host properly. | Peter Powell | |
2017-12-22 | Rename <security:hidewhois> to <security:hideserver>. | Peter Powell | |
The previous name was horrible and didn't describe what the setting actually does. | |||
2017-11-20 | Inherit non-core connect class settings properly. | Peter Powell | |
Based partially on a patch by Attila. | |||
2017-11-17 | Fix a ton of -Wsign-conversion warnings. | Peter Powell | |
2017-11-13 | Add a class which encapsulates the concept of token lists. | Peter Powell | |
2017-11-12 | Merge tag 'v2.0.25' into master. | Peter Powell | |
2017-11-05 | Use InvalidateCache in the sockaddrs overload of OnSetClientIP. | Peter Powell | |
This was done to the string variant in d3b82b2f7f. | |||
2017-10-28 | Hide User#host and User#dhost and use accessors to modify them. | Peter Powell | |
This removes the need to invalidate the cache after changing a user's hostname. | |||
2017-10-27 | Change SetClientIP to take a C++ string instead of a char array. | Peter Powell | |
2017-10-15 | Clean up the initialization of ConnectClass and ServerConfig. | attilamolnar | |
2017-10-04 | Fix RPL_SERVERVERSION treating the modes as a single parameter. | Peter Powell | |
2017-09-12 | Get rid of irc::sockets::satoap(). | Peter Powell | |
This function is being misused in all but one scenario. It isn't really worth keeping IMO. | |||
2017-09-03 | Move <dns:timeout> out of the core. | Peter Powell | |
2017-08-26 | Make the build reproducible by removing time related macros. | Peter Powell | |
The compile time on boot is not accurate as it will only change when the translation unit containing it is edited. The startup time in RPL_SERVERCREATED is a lot more useful than the compilation time. ngIRCd also implements this behaviour. | |||
2017-07-09 | Merge v2.0.23 and v2.0.24 into master. | Peter Powell | |
2017-05-17 | Merge pull request #1230 from SaberUK/insp20+ipcache | Attila Molnar | |
[2.0] Invalidate the caches properly when User::SetClientIP is called. | |||
2016-12-30 | Clean up User::FormatModes(), rename to GetModeLetters() | Attila Molnar | |
Prefix the returned string with '+' | |||
2016-12-30 | Make all User::IsModeSet() methods const, accept const ModeHandler | Attila Molnar | |
2016-12-30 | Deduplicate nickname overruling code | Attila Molnar | |
Create LocalUser::OverruleNick(), call it from User::ChangeNick() and the UID handler in spanningtree | |||
2016-12-05 | Fix users receiving a QUIT with themselves as source when host cycling in ↵ | Attila Molnar | |
certain cases The OnBuildNeighborList handler in m_auditorium can add the cycling user to the exceptions as an always send exception. To fix, remove the user from the exceptions before processing them. Reported by @genius3000 on IRC | |||
2016-10-25 | Allow classes to take a port range. | Peter Powell | |
2016-09-25 | Invalidate the caches properly when User::SetClientIP is called. | Peter Powell | |
2016-08-30 | Pass the ModeHandler to User::HasModePermission() | Attila Molnar | |
Mark the method as const | |||
2016-08-29 | Convert ModeHandler::GetNumParams() to NeedsParam() that returns a bool | Attila Molnar | |
2016-08-10 | Initialize more User and LocalUser fields using the init list | Attila Molnar | |
2016-08-10 | Update style of initializer lists in User and LocalUser constructors | Attila Molnar | |
2016-03-30 | Remove User::SendText() and overrides completely | Attila Molnar | |
2016-03-29 | Make User::WriteRemoteNumeric() virtual, implement it in ↵ | Attila Molnar | |
SpanningTree::RemoteUser | |||
2016-03-29 | Handle numerics with a source other than the local server in ↵ | Attila Molnar | |
User::WriteNumeric() | |||
2016-03-22 | Remove now unused overload of User::SendText() | Attila Molnar | |
2016-03-01 | Add User::WriteRemoteNotice() | Attila Molnar | |
Sends a NOTICE from the local server to the user which can be local or remote | |||
2016-02-25 | Remove unnecessary std::string::c_str() calls | Attila Molnar | |
2016-02-25 | Add User::WriteRemoteNumeric() and switch code using SendText() to send ↵ | Attila Molnar | |
numerics to it | |||
2016-02-25 | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | Attila Molnar | |
parameters | |||
2016-02-25 | Add Numeric::Numeric | Attila Molnar | |
2015-12-07 | Do not insert FakeUsers into UserManager::uuidlist | Attila Molnar | |
Inserting them causes FindUUID() and FindNick() to return server users which is not what modules want | |||
2015-11-03 | Move already sent id rollover handling and static LocalUser::already_sent_id ↵ | Attila Molnar | |
into UserManager | |||
2015-11-03 | Add UserManager::NextAlreadySentId() and convert all code to use it | Attila Molnar | |
2015-11-02 | Rewrite invite system | Attila Molnar | |
- Moved out of core, now lives entirely in core_channel - Accessible using the provided API after including the appropriate header - Invites are stored in an extension attached to LocalUser/Channel objects, they no longer need special handling when destroying these objects or when lowering TS - Expiration of timed invites are implemented using Timers - When creating a new invite let a non-timed invite override a timed one | |||
2015-02-27 | Fix oversights in substr() conversion | Attila Molnar | |
Thanks to @StevenVanAcker for reporting and testing this | |||
2015-01-24 | Remove needless checks from User::WriteCommon()/WriteCommonRaw() | Attila Molnar | |
2015-01-24 | Implement User::WriteCommonRaw() using ForEachNeighbor() | Attila Molnar | |
2015-01-24 | Implement User::WriteCommonQuit() using ForEachNeighbor() in UserManager | Attila Molnar | |
2015-01-24 | Add User::ForEachNeighbor() | Attila Molnar | |
2015-01-10 | Reduce std::string::substr() usage | Attila Molnar | |
substr() returns a new string while erase() and assign() modify the existing one |