| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs.
| Peter Powell | 2017-11-21 | 1 | -6/+6 |
| * | Fix a ton of -Wsign-conversion warnings. | Peter Powell | 2017-11-17 | 1 | -2/+2 |
| * | Hide User#host and User#dhost and use accessors to modify them.•••This removes the need to invalidate the cache after changing a
user's hostname.
| Peter Powell | 2017-10-28 | 1 | -17/+26 |
| * | Change SetClientIP to take a C++ string instead of a char array. | Peter Powell | 2017-10-27 | 1 | -2/+2 |
| * | Fix a bunch of Doxygen warnings. | Peter Powell | 2017-08-26 | 1 | -1/+2 |
| * | Add CXX11_OVERRIDE to overridden members that lack it.•••This fixes a ton of warnings when building on compilers that
default to C++11 or newer.
| Peter Powell | 2017-07-12 | 1 | -12/+12 |
| * | Clean up User::FormatModes(), rename to GetModeLetters()•••Prefix the returned string with '+'
| Attila Molnar | 2016-12-30 | 1 | -3/+5 |
| * | Make all User::IsModeSet() methods const, accept const ModeHandler | Attila Molnar | 2016-12-30 | 1 | -6/+6 |
| * | Deduplicate nickname overruling code•••Create LocalUser::OverruleNick(), call it from User::ChangeNick() and the UID handler in spanningtree
| Attila Molnar | 2016-12-30 | 1 | -0/+6 |
| * | Allow classes to take a port range. | Peter Powell | 2016-10-25 | 1 | -0/+5 |
| * | Pass the ModeHandler to User::HasModePermission()•••Mark the method as const
| Attila Molnar | 2016-08-30 | 1 | -6/+4 |
| * | Remove User::SendText() and overrides completely | Attila Molnar | 2016-03-30 | 1 | -12/+1 |
| * | Make User::WriteRemoteNumeric() virtual, implement it in SpanningTree::Remote... | Attila Molnar | 2016-03-29 | 1 | -1/+1 |
| * | Remove now unused overload of User::SendText() | Attila Molnar | 2016-03-22 | 1 | -6/+0 |
| * | Add User::WriteRemoteNotice()•••Sends a NOTICE from the local server to the user which can be local or remote
| Attila Molnar | 2016-03-01 | 1 | -0/+11 |
| * | Add User::WriteRemoteNumeric() and switch code using SendText() to send numer... | Attila Molnar | 2016-02-25 | 1 | -0/+51 |
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ... | Attila Molnar | 2016-02-25 | 1 | -2/+51 |
| * | Move already sent id rollover handling and static LocalUser::already_sent_id ... | Attila Molnar | 2015-11-03 | 1 | -1/+0 |
| * | Rewrite invite system•••- 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
| Attila Molnar | 2015-11-02 | 1 | -22/+1 |
| * | Implement User::WriteCommonQuit() using ForEachNeighbor() in UserManager | Attila Molnar | 2015-01-24 | 1 | -7/+0 |
| * | Add User::ForEachNeighbor() | Attila Molnar | 2015-01-24 | 1 | -0/+23 |
| * | Move the intrusive list containers into the insp namespace | Attila Molnar | 2014-08-30 | 1 | -2/+2 |
| * | Rename UserChanList to User::ChanList, remove UCListIter | Attila Molnar | 2014-07-14 | 1 | -1/+4 |
| * | User::ChangeNick() cannot fail if the new nick is the uuid, document this and... | Attila Molnar | 2014-07-03 | 1 | -1/+1 |
| * | Remove now needless User::ForceNickChange()•••Change call sites to call ChangeNick()
| Attila Molnar | 2014-07-03 | 1 | -11/+1 |
| * | Remove unused User::WriteCommonExcept()•••WriteCommonRaw(msg, false) has similiar functionality with a std::string parameter
| Attila Molnar | 2014-04-02 | 1 | -6/+0 |
| * | Move User::SendAll() into core_privmsg•••This functionality is only used by the PRIVMSG and NOTICE handlers
| Attila Molnar | 2014-04-02 | 1 | -10/+0 |
| * | Remove User::WriteTo() functions; use User::WriteFrom() instead•••The removed functions were rarely used and all they did was to call User::WriteFrom() with swapped arguments. On call sites, WriteTo() hardly offers any readability improvement over WriteFrom().
| Attila Molnar | 2014-04-02 | 1 | -13/+0 |
| * | Update nick timestamps in User::ChangeNick(), pass the new TS in a parameter | Attila Molnar | 2014-03-03 | 1 | -2/+2 |
| * | Index Channel::modes and User::modes with the id of the mode instead of its l... | Attila Molnar | 2014-02-21 | 1 | -8/+6 |
| * | Fix various cases of UUID exposure.•••- Introduce WriteCommand which sends * when the user has not registered.
- Switch a ton of code to use WriteCommand instead of WriteServ.
- Convert WriteNotice to be a wrapper around WriteCommand.
- Only send * when NICK has not been sent instead of before registration.
| Peter Powell | 2014-02-06 | 1 | -1/+7 |
| * | Convert InviteBase::invites to an intrusively linked list | Attila Molnar | 2014-01-24 | 1 | -1/+1 |
| * | Convert LocalUserList to an intrusively linked list | Attila Molnar | 2014-01-24 | 1 | -5/+1 |
| * | Move server description field from TreeServer into Server; remove OnGetServer... | Attila Molnar | 2014-01-05 | 1 | -2/+2 |
| * | Introduce Server class•••- Replaces std::string server in User
- Replaces InspIRCd::ULine() and SilentULine()
| Attila Molnar | 2014-01-05 | 1 | -5/+11 |
| * | Improve UserManager::QuitUser() and related code•••- Make operreason optional; NULL means same as quitreason
- Remove User::quietquit, it is now handled internally in spanningtree
- Send snotice about quitting remote users from spanningtree
| Attila Molnar | 2014-01-05 | 1 | -4/+0 |
| * | Rename <connect:nouserdns> to <connect:resolvehostnames>.•••This name is more descriptive and avoids a double negative which
could make the name of this setting unclear to non-native speakers.
| Peter Powell | 2013-08-10 | 1 | -1/+1 |
| * | Remove virtual User::GetClass() (but keep LocalUser::GetClass()) | attilamolnar | 2013-08-09 | 1 | -6/+4 |
| * | Accept std::string as parameter in User::ChangeHost(), ChangeIdent() and Chan...•••Pass the string itself to IsIdent() instead of string.c_str()
| attilamolnar | 2013-08-09 | 1 | -3/+3 |
| * | Move host cycle logic into m_hostcycle | attilamolnar | 2013-08-09 | 1 | -12/+4 |
| * | Get rid of enum UserModes and mark User::modes as private | attilamolnar | 2013-07-19 | 1 | -25/+8 |
| * | Replace hardcoded mode letters, part 3•••This changes most remaining User::IsModeSet() calls to use ModeReferences for modes that were created by other modules or the core
| attilamolnar | 2013-07-19 | 1 | -1/+0 |
| * | Move SetNoticeMask(), FormatNoticeMasks() and ProcessNoticeMasks() from the U... | attilamolnar | 2013-07-19 | 1 | -19/+8 |
| * | Allow for skipping clone checking before DNS is complete. | Daniel Vassdal | 2013-07-02 | 1 | -1/+1 |
| * | Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() w... | attilamolnar | 2013-07-01 | 1 | -0/+15 |
| * | Fix Doxygen comments. | Peter Powell | 2013-06-21 | 1 | -4/+4 |
| * | Convert User::SendText to use std::string. | Peter Powell | 2013-06-06 | 1 | -1/+1 |
| * | Convert User::FormatNoticeMasks() to use std::string. | Peter Powell | 2013-06-06 | 1 | -1/+1 |
| * | Replace some C string operations with the + operator. | Peter Powell | 2013-06-06 | 1 | -6/+0 |
| * | Change the signature of User::ForceNickChange() to accept const std::string& ... | attilamolnar | 2013-05-18 | 1 | -1/+1 |