| Commit message (Expand) | Author | Age | Files | Lines |
| * | Update copyright headers. | InspIRCd Robot | 2020-04-24 | 1 | -2/+2 |
| * | Fixes by misspell-fixer | InspIRCd Robot | 2020-04-21 | 1 | -2/+2 |
| * | Switch User::usertype back to an unsigned int.•••Leaving it up to the compiler to set the underlying type of the enum
can result in this being a signed int. This variable will not work
as intended as a 2 bit signed int.
This fixes an issue with the Windows build(s) where a server trying
to link would fail with "Protocol violation: Invalid source".
| Matt Schatz | 2020-04-19 | 1 | -1/+1 |
| * | Add support for limiting what opers can subscribe to snomasks. | Sadie Powell | 2020-04-11 | 1 | -0/+9 |
| * | Fix various documentation and formatting issues. | Sadie Powell | 2020-03-30 | 1 | -4/+4 |
| * | Warn if the server config contains an unhashed password.•••This will be made a hard failure in v4.
| Sadie Powell | 2020-03-11 | 1 | -0/+6 |
| * | Update copyright headers. | InspIRCd Robot | 2020-01-11 | 1 | -5/+14 |
| * | Implement serialisation of users.•••This allows for various things which will be coming in the future.
e.g. Transferring users to another server on upgrade.
| Peter Powell | 2019-10-14 | 1 | -0/+14 |
| * | Add null pointer checks to IS_{LOCAL,REMOTE,SERVER}.•••I don't know of any places this causes issues but its better to be
safe than sorry.
| Peter Powell | 2019-09-29 | 1 | -3/+3 |
| * | Add the server id to the Server class. | Peter Powell | 2019-09-23 | 1 | -2/+3 |
| * | Add a method for swapping user I/O handlers. | Peter Powell | 2019-07-21 | 1 | -0/+5 |
| * | Rename HasPermission to HasCommandPermission. | Peter Powell | 2019-04-19 | 1 | -2/+2 |
| * | Remove the 'noisy' mode for HasPrivPermission.•••This was only used in one place.
| Peter Powell | 2019-04-19 | 1 | -4/+2 |
| * | Replace GetServerPort() with server_sa.port(). | Peter Powell | 2019-02-15 | 1 | -5/+0 |
| * | Rename User::nping to nextping for consistency with lastping. | Peter Powell | 2019-02-15 | 1 | -3/+2 |
| * | Implement support for the extended tag space for client tags. | Peter Powell | 2019-01-24 | 1 | -0/+3 |
| * | Redo OnSetEndPoint logic to fix duplicate clones (#1549). | linuxdaemon | 2019-01-14 | 1 | -5/+5 |
| * | Improve X-line text consistency.•••- Change any "-Line", ":Line", or "*line" to "-line" throughout
the X-line code, comments, and documentation.
- Add periods to the end of some notices.
- Correct a typo in the Q-line code comments.
- Update the filter module documentation (shun addition).
Co-authored-by: Robby <robby@chatbelgie.be>
| Matt Schatz | 2019-01-09 | 1 | -4/+4 |
| * | Reject setting modes which are null or not registered. | Peter Powell | 2018-12-12 | 1 | -1/+2 |
| * | Store the type of a StreamSocket within itself.•••Similar to with IOHooks this allows you to convert StreamSocket to
a UserIOHandler quickly.
| Peter Powell | 2018-10-25 | 1 | -1/+5 |
| * | Fix unregistered user modes thinking they are enabled. | Peter Powell | 2018-10-18 | 1 | -1/+1 |
| * | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com>
| Peter Powell | 2018-08-13 | 1 | -56/+34 |
| * | Rename User::fullname to realname and make it private. | Peter Powell | 2018-07-30 | 1 | -7/+6 |
| * | Replace most usages of "name" with "real" or "real name". | Peter Powell | 2018-07-30 | 1 | -1/+1 |
| * | Replace most usages of "GECOS" with "real" or "real name". | Peter Powell | 2018-07-30 | 1 | -3/+3 |
| * | Add a module which implements the HAProxy PROXY v2 protocol. | Peter Powell | 2018-07-26 | 1 | -0/+1 |
| * | 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 |