| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-06-21 | 1 | -2/+2 | |
| * | Update copyright headers. | 2024-06-07 | 1 | -5/+2 | |
| * | Make passwords for oper accounts optional.•••This allows restricting an oper account based on other data such as TLS fingerprint or services account but without logging them in automatically like autologin. | 2024-05-16 | 1 | -0/+3 | |
| * | If a user has an oper connect class then reset it when de-opering. | 2024-02-19 | 1 | -1/+3 | |
| * | Rework how away state is stored internally.•••This will be necessary for implementing pre-away as well as some changes for WATCH compatibility with Unreal. | 2023-08-04 | 1 | -11/+16 | |
| * | Refactor Change{Displayed,Real}Host to match other Change* methods. | 2023-06-30 | 1 | -4/+4 | |
| * | Remove OnPreChange{Host,RealName} events and deboolify methods.•••These have not ever been used as far as I can see. | 2023-06-29 | 1 | -8/+5 | |
| * | Retain the "real" username properly like we do for hostnames.•••This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. | 2023-06-29 | 1 | -16/+37 | |
| * | Inline various User methods. | 2023-06-25 | 1 | -7/+13 | |
| * | Rename some headers to match the common naming system. | 2023-01-26 | 1 | -1/+1 | |
| * | Refactor the caching methods in User and rename to make more sense. | 2023-01-24 | 1 | -59/+61 | |
| * | Convert various enums to strongly typed scoped enums. | 2023-01-22 | 1 | -4/+8 | |
| * | Avoid copying shared_ptr<ConfigTag> when not necessary. | 2023-01-10 | 1 | -3/+3 | |
| * | Rework how users are assigned to connect classes.•••- Move core connect class checks and <performance:clonesonconnect> to the core_user module. - Add pre-change and post-change events for when a connect class changes. - Split explicit class changing out into its own method. - Remove the need to almost always call CheckClass after SetClass. - Add use counting to the connect class instead of relying on the shared_ptr use count. | 2023-01-08 | 1 | -16/+18 | |
| * | Get rid of the virtual Has*Permission methods.•••These are no longer needed now we store privs for the remote oper. | 2023-01-02 | 1 | -32/+4 | |
| * | Allow synching oper privileges between servers. | 2023-01-02 | 1 | -1/+1 | |
| * | Allow getting all of the oper command/mode/snomask privs. | 2023-01-02 | 1 | -5/+10 | |
| * | Add some useful aliases to OperType. | 2023-01-02 | 1 | -1/+12 | |
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+0 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+0 | |
| * | | Pass the client/server sockaddr around as a ref instead of a ptr. | 2022-12-25 | 1 | -1/+1 | |
| * | | Use in_port_t instead of int/unsigned int/long. | 2022-12-18 | 1 | -1/+1 | |
| * | | Fix conflicting with a predefined value on Windows.•••STRICT is already defined on Windows so we'll need to do something else here. Thanks Microsoft. | 2022-12-11 | 1 | -4/+4 | |
| * | | Move <oper:autologin> from m_sslinfo to core_oper and rework.•••- Promote autologin to a core concept with visibility in events. - Replace the binary yes/no value with strict/relaxed/never. This intentionally breaks v3 oper block autologin as admins will need to review them for the security implications of the new behaviour. | 2022-12-11 | 1 | -2/+23 | |
| * | | Move password checking from core_oper into OperAccount. | 2022-12-10 | 1 | -2/+13 | |
| * | | Allow modules to ignore any checks from OnPreOperLogin. | 2022-12-10 | 1 | -1/+2 | |
| * | | More const correctness work. | 2022-12-08 | 1 | -2/+2 | |
| * | | Avoid copying a shared_ptr where not actually necessary. | 2022-12-01 | 1 | -3/+3 | |
| * | | Use `T&&` instead of `T` or `const T&`. | 2022-11-29 | 1 | -2/+2 | |
| * | | Move the oper statistics to core_oper and rewrite.•••The numerics we used previously were not being used according to the RFC and every implementation has their own behaviour here which makes it hard for clients to do anything reasonable. Instead of this using the generic stats numeric makes a lot more sense. | 2022-11-29 | 1 | -0/+11 | |
| * | | Refactor the internals of the oper system.•••- Allow overriding privileges from the <class> blocks in the <type> and <oper> blocks. - Separate oper types from oper accounts in the code. This enables moving some core stuff out of the config tag later. - Merge the config tags together to make a synthetic tag that can have getXXX called on it instead of using getConfig and then converting it. - Move the details of Have*Permission into the oper type class. - Improve oper events to allow modules to easily hook into the oper system. | 2022-11-28 | 1 | -10/+104 | |
| * | | Clean up the typedefs for OnBuildNeighborList. | 2022-10-29 | 1 | -0/+6 | |
| * | | Rename session registration to connection to avoid a semantic conflict.•••We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works. | 2022-10-29 | 1 | -27/+28 | |
| * | | Allow UserManager::Find{Nick,UUID,} to ignore unregistered users. | 2022-10-29 | 1 | -0/+4 | |
| * | | More const correctness. | 2022-10-23 | 1 | -5/+5 | |
| * | | Assign more class members inline instead of in the constructor. | 2022-10-21 | 1 | -2/+1 | |
| * | | Rename User::age to User::nickchanged and fix the docs. | 2022-10-11 | 1 | -3/+2 | |
| * | | Mark User::Has{Command,Priv}Permission as const. | 2022-10-07 | 1 | -4/+4 | |
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -3/+3 | |
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -1/+1 | |
| * | | Rip out the extensible/user serialisation system.•••This was part of a failed attempt to implement zero downtime restarts in v3. This can be implemented in a better way but for now its just slowing down build times so lets kill it. | 2022-09-01 | 1 | -13/+0 | |
| * | | Update some code that uses "endpoint" to use "socket address" instead. | 2022-09-01 | 1 | -2/+2 | |
| * | | Merge branch 'insp3' into master. | 2022-08-27 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-08-25 | 1 | -1/+1 | |
| * | | Rename SetClientIP to ChangeRemoteAddress. | 2022-08-10 | 1 | -6/+6 | |
| * | | Merge branch 'insp3' into master. | 2022-08-10 | 1 | -4/+1 | |
| |\| | |||||
| | * | Deprecate the string variant of SetClientIP.•••Nothing uses this anymore. | 2022-08-10 | 1 | -4/+5 | |
| * | | Remove some unnecessary getters in ConnectClass.•••All of these members are public anyway. | 2022-07-22 | 1 | -62/+0 | |
| * | | Format enums with an underlying type like classes. | 2022-04-30 | 1 | -2/+4 | |
| * | | Add a typedef for the mode status bitset. | 2022-03-27 | 1 | -1/+1 | |
