aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree
Commit message (Expand)AuthorAgeFilesLines
...
| * Fix warning about UNIX socket connections being insecure.Gravatar Sadie Powell2022-12-171-1/+2
* | Pass the client/server sockaddr around as a ref instead of a ptr.Gravatar Sadie Powell2022-12-254-8/+8
* | Lower the threshold for server clock offsets to 15s/5s.Gravatar Sadie Powell2022-12-201-4/+4
* | Move extension types to their own header to speed up build times.Gravatar Sadie Powell2022-12-191-0/+2
* | Rework the levels things are logged at to make more sense.Gravatar Sadie Powell2022-12-186-8/+8
* | Add is_local to the sockaddrs union.Gravatar Sadie Powell2022-12-181-1/+1
* | 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. Gravatar Sadie Powell2022-12-113-4/+5
* | More const correctness work.Gravatar Sadie Powell2022-12-087-26/+26
* | Yet more stylistic fixes.Gravatar Sadie Powell2022-12-0114-53/+153
* | Extract the logic for tags that need message-tags to its own type.Gravatar Sadie Powell2022-11-292-13/+3
* | 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. Gravatar Sadie Powell2022-11-285-22/+14
* | 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. Gravatar Sadie Powell2022-10-291-4/+4
* | Use User::IsFullyConnected instead of checking for REG_ALL.Gravatar Sadie Powell2022-10-293-8/+8
* | Allow UserManager::Find{Nick,UUID,} to ignore unregistered users.Gravatar Sadie Powell2022-10-292-4/+4
* | More const correctness.Gravatar Sadie Powell2022-10-231-1/+1
* | Assign more class members inline instead of in the constructor.Gravatar Sadie Powell2022-10-214-18/+9
* | Handle renamed modules when building compat link data.Gravatar Sadie Powell2022-10-181-0/+6
* | Refactor the DNS resolvers in the spanningtree module.Gravatar Sadie Powell2022-10-163-45/+32
* | Rename User::age to User::nickchanged and fix the docs.Gravatar Sadie Powell2022-10-115-13/+13
* | Rename user_hash to UserMap and move to usermanager.Gravatar Sadie Powell2022-10-072-3/+3
* | Replace foo.erase(foo.{size|end}()-1) with foo.pop_back().Gravatar Sadie Powell2022-10-012-2/+2
* | Replace *foo.rbegin() with foo.end().Gravatar Sadie Powell2022-10-011-1/+1
* | Use auto instead of type names where the type is obvious.Gravatar Sadie Powell2022-09-2915-23/+23
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-2914-50/+50
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-09-191-0/+1
|\|
| * Fix forwarding tags when sending a numeric to a remote user.Gravatar Sadie Powell2022-09-191-0/+1
* | Make internal penalty be specified in millisecs instead of seconds.•••This removes the need to multiply it later. Gravatar Sadie Powell2022-09-091-1/+1
* | Default allow_empty_last_param to false.Gravatar Sadie Powell2022-09-071-1/+0
* | Fix more warnings discovered with -Weverything.Gravatar Sadie Powell2022-09-051-1/+0
* | Use auto in places where it is really obvious what the type is.Gravatar Sadie Powell2022-09-044-8/+8
* | Fix some warnings noticed by the readability-* clang-tidy checkers.Gravatar Sadie Powell2022-09-0313-29/+30
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-271-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-08-251-1/+1
* | 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. Gravatar Sadie Powell2022-08-115-15/+10
* | Rename SetClientIP to ChangeRemoteAddress.Gravatar Sadie Powell2022-08-101-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-101-4/+10
|\|
| * Fix remote users with UNIX socket paths as their sockaddr.Gravatar Sadie Powell2022-08-101-2/+9
| * Fix some harmless debug messages when initializing remote users.Gravatar Sadie Powell2022-08-101-2/+1
* | Modernize various minor legacy C++isms.Gravatar Sadie Powell2022-07-301-3/+2
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-2218-38/+38
* | Make dynamic a non-default header.Gravatar Sadie Powell2022-06-261-0/+1
* | Make clientprotocol{msg,event} and numericbuilder non-default headers.Gravatar Sadie Powell2022-06-261-6/+7
* | Move numeric helper classes to their own header.Gravatar Sadie Powell2022-06-261-0/+1
* | Modernize the syntax of various templates.Gravatar Sadie Powell2022-06-231-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-05-251-1/+1
|\|
| * Fix some compiler warnings on i386.Gravatar Sadie Powell2022-05-251-1/+1
* | Deprecate the (raw)version SINFO keys and split out customversion/rawbranch.Gravatar Sadie Powell2022-05-176-68/+75
* | Get rid of GetVersionString.•••TODO: split fullversion/version into individual fields. Gravatar Sadie Powell2022-05-171-2/+2
* | Add a typedef for a mode rank.Gravatar Sadie Powell2022-05-173-3/+3
* | Store a set of list mode pointers in Membership instead of characters.Gravatar Sadie Powell2022-05-172-2/+3