| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Refactor SocketEngine slightly.•••- Remove pointless shutdown() wrapper. - Remove pointless bounds checking function. - Make Bind and Listen take an EventHandler instead of a fd. - Add nullability attributes to every method. | 2022-12-25 | 1 | -1/+1 | ||
| * | | Pass the client/server sockaddr around as a ref instead of a ptr. | 2022-12-25 | 1 | -3/+3 | ||
| * | | Use in_port_t instead of int/unsigned int/long. | 2022-12-18 | 1 | -3/+6 | ||
| * | | Rework the levels things are logged at to make more sense. | 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 | -7/+7 | ||
| * | | 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 | -4/+28 | ||
| * | | Move password checking from core_oper into OperAccount. | 2022-12-10 | 1 | -0/+6 | ||
| * | | Remove the unused Extensible* parameter to PassCompare/OnPassCompare. | 2022-12-10 | 1 | -1/+1 | ||
| * | | Allow modules to ignore any checks from OnPreOperLogin. | 2022-12-10 | 1 | -2/+2 | ||
| * | | More const correctness work. | 2022-12-08 | 1 | -2/+2 | ||
| * | | Avoid copying a shared_ptr where not actually necessary. | 2022-12-01 | 1 | -4/+3 | ||
| * | | Yet more stylistic fixes. | 2022-12-01 | 1 | -7/+8 | ||
| * | | Fix GetSnomasks returning unregistered snomasks. | 2022-11-30 | 1 | -1/+1 | ||
| * | | 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/+36 | ||
| * | | 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 | -109/+157 | ||
| * | | Clean up the typedefs for OnBuildNeighborList. | 2022-10-29 | 1 | -3/+3 | ||
| * | | 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 | -14/+14 | ||
| * | | Use User::IsFullyConnected instead of checking for REG_ALL. | 2022-10-29 | 1 | -3/+3 | ||
| * | | Rename User::age to User::nickchanged and fix the docs. | 2022-10-11 | 1 | -2/+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 | -4/+4 | ||
| * | | 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 | -8/+0 | ||
| * | | Update some code that uses "endpoint" to use "socket address" instead. | 2022-09-01 | 1 | -4/+4 | ||
| * | | Move aptosa/untosa into the sockaddrs union and add from/from_ip.•••The struct will also now always be zero-initialized by default which removes the footgun which has happened previously where the union has been accessed before being initialized leading to it containing weird values. | 2022-08-11 | 1 | -3/+1 | ||
| * | | Rename OnSetUserIP to OnChangeRemoteAddress. | 2022-08-10 | 1 | -1/+1 | ||
| * | | Rename SetClientIP to ChangeRemoteAddress. | 2022-08-10 | 1 | -4/+4 | ||
| * | | Merge branch 'insp3' into master. | 2022-08-10 | 1 | -21/+1 | ||
| |\| | ||||||
| | * | Fix some harmless debug messages when initializing remote users. | 2022-08-10 | 1 | -2/+2 | ||
| * | | Modernize various minor legacy C++isms. | 2022-07-30 | 1 | -2/+2 | ||
| * | | Remove some unnecessary getters in ConnectClass.•••All of these members are public anyway. | 2022-07-22 | 1 | -10/+11 | ||
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -6/+6 | ||
| * | | Make clientprotocol{msg,event} and numericbuilder non-default headers. | 2022-06-26 | 1 | -0/+1 | ||
| * | | Move numerics to the source files where they are actually used. | 2022-06-26 | 1 | -0/+10 | ||
| * | | Remove unnecessary arguments to On(Post)Oper.•••These are already accessible from the user object. | 2022-05-07 | 1 | -2/+2 | ||
| * | | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -19/+19 | ||
| * | | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | ||
| |\| | ||||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | ||
| * | | Pack the mode set more efficiently and add support for numeric modes. | 2022-03-27 | 1 | -6/+4 | ||
| * | | Add a typedef for the mode status bitset. | 2022-03-27 | 1 | -1/+1 | ||
| * | | Merge branch 'insp3' into master. | 2022-03-27 | 1 | -1/+1 | ||
| |\| | ||||||
| | * | Fix real name formatting bleeding into IRC messages. | 2022-03-21 | 1 | -1/+1 | ||
| * | | Add the type to the Extensible class. | 2022-01-31 | 1 | -1/+2 | ||
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -1/+1 | ||
| * | | Add ConnectClass::Ptr as an alias for std::shared_ptr<ConnectClass>. | 2022-01-16 | 1 | -4/+4 | ||
| * | | Make 005 dependent on the connect class. | 2022-01-16 | 1 | -0/+1 | ||
| * | | Merge branch 'insp3' into master. | 2022-01-03 | 1 | -1/+0 | ||
| |\| | ||||||
| | * | Update copyright headers. | 2021-12-30 | 1 | -1/+0 | ||
| * | | Add the final keyword to all remaining classes that can have it. | 2021-12-20 | 1 | -1/+2 | ||
| * | | Merge branch 'insp3' into master. | 2021-12-14 | 1 | -0/+8 | ||
| |\| | ||||||
