aboutsummaryrefslogtreecommitdiff
path: root/include/users.h
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+0
* Update copyright headers.Gravatar InspIRCd Robot2022-08-251-1/+1
* Deprecate the string variant of SetClientIP.•••Nothing uses this anymore. Gravatar Sadie Powell2022-08-101-4/+5
* If a user has a unique username then include it in bans.Gravatar Sadie Powell2021-12-141-0/+3
* Sync uniqueusername from the connect class to the user.•••This is a massive hack for now but should be made to sync properly in v4 when we have extensibles that don't suck. Gravatar Sadie Powell2021-12-141-0/+3
* Add the <connect:uniqueusername> option.Gravatar Sadie Powell2021-11-231-0/+3
* Document ConnectClass and reorder it to avoid unnecessary padding.Gravatar Sadie Powell2021-11-161-67/+54
* Change ForEachNeighbour to return the already sent id.Gravatar Sadie Powell2021-07-241-3/+4
* Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Gravatar Josh Soref2021-06-211-5/+5
* Update copyright headers.Gravatar InspIRCd Robot2021-05-141-1/+1
* Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-3/+3
* Fix various documentation comments.Gravatar Sadie Powell2021-03-311-5/+4
* Add support for matching multiple hosts in <connect:{allow,deny}>.Gravatar Sadie Powell2021-03-301-4/+7
* Update copyright headers.Gravatar InspIRCd Robot2021-03-051-3/+4
* Update copyright headers.Gravatar InspIRCd Robot2020-04-241-2/+2
* Fixes by misspell-fixerGravatar InspIRCd Robot2020-04-211-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". Gravatar Matt Schatz2020-04-191-1/+1
* Add support for limiting what opers can subscribe to snomasks.Gravatar Sadie Powell2020-04-111-0/+9
* Fix various documentation and formatting issues.Gravatar Sadie Powell2020-03-301-4/+4
* Warn if the server config contains an unhashed password.•••This will be made a hard failure in v4. Gravatar Sadie Powell2020-03-111-0/+6
* Update copyright headers.Gravatar InspIRCd Robot2020-01-111-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. Gravatar Peter Powell2019-10-141-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. Gravatar Peter Powell2019-09-291-3/+3
* Add the server id to the Server class.Gravatar Peter Powell2019-09-231-2/+3
* Add a method for swapping user I/O handlers.Gravatar Peter Powell2019-07-211-0/+5
* Rename HasPermission to HasCommandPermission.Gravatar Peter Powell2019-04-191-2/+2
* Remove the 'noisy' mode for HasPrivPermission.•••This was only used in one place. Gravatar Peter Powell2019-04-191-4/+2
* Replace GetServerPort() with server_sa.port().Gravatar Peter Powell2019-02-151-5/+0
* Rename User::nping to nextping for consistency with lastping.Gravatar Peter Powell2019-02-151-3/+2
* Implement support for the extended tag space for client tags.Gravatar Peter Powell2019-01-241-0/+3
* Redo OnSetEndPoint logic to fix duplicate clones (#1549).Gravatar linuxdaemon2019-01-141-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> Gravatar Matt Schatz2019-01-091-4/+4
* Reject setting modes which are null or not registered.Gravatar Peter Powell2018-12-121-1/+2
* Store the type of a StreamSocket within itself.•••Similar to with IOHooks this allows you to convert StreamSocket to a UserIOHandler quickly. Gravatar Peter Powell2018-10-251-1/+5
* Fix unregistered user modes thinking they are enabled.Gravatar Peter Powell2018-10-181-1/+1
* Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> Gravatar Peter Powell2018-08-131-56/+34
* Rename User::fullname to realname and make it private.Gravatar Peter Powell2018-07-301-7/+6
* Replace most usages of "name" with "real" or "real name".Gravatar Peter Powell2018-07-301-1/+1
* Replace most usages of "GECOS" with "real" or "real name".Gravatar Peter Powell2018-07-301-3/+3
* Add a module which implements the HAProxy PROXY v2 protocol.Gravatar Peter Powell2018-07-261-0/+1
* Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs. Gravatar Peter Powell2017-11-211-6/+6
* Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-171-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. Gravatar Peter Powell2017-10-281-17/+26
* Change SetClientIP to take a C++ string instead of a char array.Gravatar Peter Powell2017-10-271-2/+2
* Fix a bunch of Doxygen warnings.Gravatar Peter Powell2017-08-261-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. Gravatar Peter Powell2017-07-121-12/+12
* Clean up User::FormatModes(), rename to GetModeLetters()•••Prefix the returned string with '+' Gravatar Attila Molnar2016-12-301-3/+5
* Make all User::IsModeSet() methods const, accept const ModeHandlerGravatar Attila Molnar2016-12-301-6/+6
* Deduplicate nickname overruling code•••Create LocalUser::OverruleNick(), call it from User::ChangeNick() and the UID handler in spanningtree Gravatar Attila Molnar2016-12-301-0/+6
* Allow classes to take a port range.Gravatar Peter Powell2016-10-251-0/+5