| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Convert the cloak_md5 module to the new cloak system. | 2023-01-13 | 3 | -349/+111 | ||
| * | | Rename the old cloaking implementation to cloak_md5. | 2023-01-13 | 1 | -0/+0 | ||
| * | | Add the core of the new cloak implementation. | 2023-01-13 | 1 | -0/+335 | ||
| * | | Const correct various functions. | 2023-01-11 | 4 | -4/+4 | ||
| * | | Make some functions that don't use `this` static. | 2023-01-11 | 1 | -2/+2 | ||
| * | | Fix calling various static functions through a type instance. | 2023-01-11 | 13 | -18/+18 | ||
| * | | Qualify auto correctly in all cases. | 2023-01-10 | 97 | -176/+176 | ||
| * | | Fix some unnecessary string copies. | 2023-01-10 | 3 | -3/+3 | ||
| * | | Fix using std::move when not appropriate. | 2023-01-10 | 4 | -5/+5 | ||
| * | | Avoid copying various shared_ptr usages when not necessary. | 2023-01-10 | 10 | -19/+19 | ||
| * | | Avoid copying shared_ptr<IOHookProvider> when not necessary. | 2023-01-10 | 5 | -5/+5 | ||
| * | | Avoid copying shared_ptr<ConfigTag> when not necessary. | 2023-01-10 | 82 | -100/+98 | ||
| * | | 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 | 6 | -31/+31 | ||
| * | | Switch sqloper to use a local user lookup instead of IS_LOCAL. | 2023-01-08 | 1 | -6/+4 | ||
| * | | Merge branch 'insp3' into master. | 2023-01-08 | 1 | -8/+55 | ||
| |\| | ||||||
| | * | Fix DNSBL user/host marks being overwritten by ident/host lookups. | 2023-01-07 | 1 | -10/+52 | ||
| * | | Add some overloads of Find{Nick,UUID,} for local/remote users. | 2023-01-07 | 3 | -4/+4 | ||
| * | | Add a helper class for creating a reference to a DNS manager. | 2023-01-05 | 3 | -4/+4 | ||
| * | | Misc DNSBL code cleanup. | 2023-01-04 | 1 | -41/+41 | ||
| * | | Move the shared data in the DNSBL module to its own class. | 2023-01-04 | 1 | -26/+40 | ||
| * | | Sync whether an oper login was performed automatically. | 2023-01-03 | 3 | -6/+21 | ||
| * | | Allow synching oper privileges between servers. | 2023-01-02 | 1 | -8/+67 | ||
| * | | Merge branch 'insp3' into master. | 2023-01-01 | 147 | -180/+123 | ||
| |\| | ||||||
| | * | Update copyright headers. | 2022-12-30 | 157 | -191/+127 | ||
| | * | Update module descriptions. | 2022-12-30 | 1 | -1/+1 | ||
| * | | Add the SimpleExtItem::GetRef method. | 2022-12-27 | 1 | -7/+1 | ||
| * | | Add the ListExtItem extension type. | 2022-12-27 | 3 | -64/+8 | ||
| * | | Merge branch 'insp3' into master. | 2022-12-27 | 2 | -10/+21 | ||
| |\| | ||||||
| | * | Fix a C++11-ism in the dnsbl module. | 2022-12-26 | 1 | -1/+1 | ||
| | * | Fix overwriting marks from earlier DNSBLs. | 2022-12-26 | 1 | -10/+19 | ||
| | * | Include the WebSocket fail reason in the body of the HTTP response. | 2022-12-25 | 1 | -0/+1 | ||
| * | | Move cull_delete to be inside of Cullable. | 2022-12-27 | 1 | -1/+1 | ||
| * | | Merge branch 'insp3' into master. | 2022-12-25 | 6 | -4/+13 | ||
| |\| | ||||||
| | * | Consistently limit the range for config port fields. | 2022-12-19 | 2 | -2/+2 | ||
| | * | Add an oper priv for exempting opers from blockamsg.•••Closes #2007. | 2022-12-19 | 1 | -0/+3 | ||
| | * | Fix an incompatibility between MySQL and MariaDB. | 2022-12-18 | 1 | -0/+2 | ||
| | * | Add SSL support to the mysql module. | 2022-12-18 | 1 | -0/+4 | ||
| | * | Fix warning about UNIX socket connections being insecure. | 2022-12-17 | 1 | -1/+2 | ||
| * | | 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 | 11 | -19/+19 | ||
| * | | Lower the threshold for server clock offsets to 15s/5s. | 2022-12-20 | 1 | -4/+4 | ||
| * | | Allow remapping mode and extban characters at load time.•••Closes #1970. | 2022-12-20 | 1 | -3/+3 | ||
| * | | Don't automatically fall back to ToNetwork from ToInternal.•••Only one thing used this and its really unclear especially when SimpleExtItem does the opposite. | 2022-12-20 | 1 | -0/+10 | ||
| * | | Move extension types to their own header to speed up build times. | 2022-12-19 | 26 | -1/+29 | ||
| * | | Fix parsing extbans in banredirect and timedbans. | 2022-12-19 | 2 | -5/+12 | ||
| * | | Use in_port_t instead of int/unsigned int/long. | 2022-12-18 | 3 | -8/+11 | ||
| * | | Rework the levels things are logged at to make more sense. | 2022-12-18 | 22 | -46/+46 | ||
| * | | Add is_local to the sockaddrs union. | 2022-12-18 | 1 | -1/+1 | ||
| * | | Update module descriptions. | 2022-12-12 | 8 | -8/+8 | ||
| * | | Fix the docs of markident and markhost being reversed in m_dnsbl. | 2022-12-12 | 1 | -2/+2 | ||
