aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/utils.cpp
Commit message (Expand)AuthorAgeFilesLines
* Add an undocumented option for specifying the local ranges.Gravatar Sadie Powell2025-08-151-0/+9
* Fix serialising empty link data values.Gravatar Sadie Powell2025-07-121-1/+3
* Warn when a link block has misconfigured TLS.Gravatar Sadie Powell2025-04-121-0/+6
* Update copyright headers.Gravatar InspIRCd Robot2025-03-281-1/+1
* Add a formatting overload of the ModuleException constructor.Gravatar Sadie Powell2025-03-181-1/+1
* Avoid the use of ConvToStr in string concatenation.•••This function calls INSP_FORMAT in most cases nowadays so we may as well just call that manually. Gravatar Sadie Powell2025-03-011-1/+1
* Skip the local server when routing messages in spanningtree.Gravatar Sadie Powell2024-07-021-0/+3
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+1
* Merge branch 'insp3' into insp4.Gravatar Sadie Powell2024-06-071-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+1
* | Call OnRouteMessage on all servers not just directly connected ones.Gravatar Sadie Powell2024-03-081-3/+3
* | Rename OnBroadcastMessage to OnRouteMessage.•••This is more descriptive of what it actually does. Gravatar Sadie Powell2024-03-081-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2024-02-251-0/+2
|\|
| * Fix matching certificate fingerprints to be case insensitive.•••Closes #2083. Gravatar Sadie Powell2024-02-111-0/+2
* | Update usages of stdalgo::string::equalsci to use insp::equalsci.Gravatar Sadie Powell2023-08-111-1/+1
* | Tidy up spanningtree config reading.Gravatar Sadie Powell2023-07-061-6/+9
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-06-171-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2023-06-161-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-05-301-1/+1
|\|
| * Make it clear that <link:port> is only required for IP listeners.Gravatar Sadie Powell2023-05-261-1/+1
* | <link:sctp> is for outgoing connections not incoming connections.Gravatar Sadie Powell2023-04-201-1/+1
* | Replace getInt/getUInt/getFloat with type safe templated functions.Gravatar Sadie Powell2023-01-251-1/+1
* | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings.Gravatar Sadie Powell2023-01-231-1/+1
* | Add support for linking servers over SCTP sockets.Gravatar Sadie Powell2023-01-161-0/+8
* | Const correct various functions.Gravatar Sadie Powell2023-01-111-1/+1
* | Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-101-5/+5
* | Avoid copying various shared_ptr usages when not necessary.Gravatar Sadie Powell2023-01-101-2/+2
* | Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-12-251-1/+1
|\|
| * Consistently limit the range for config port fields.Gravatar Sadie Powell2022-12-191-1/+1
* | Pass the client/server sockaddr around as a ref instead of a ptr.Gravatar Sadie Powell2022-12-251-3/+3
* | Rework the levels things are logged at to make more sense.Gravatar Sadie Powell2022-12-181-3/+3
* | More const correctness work.Gravatar Sadie Powell2022-12-081-5/+5
* | Replace foo.erase(foo.{size|end}()-1) with foo.pop_back().Gravatar Sadie Powell2022-10-011-1/+1
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-291-3/+3
* | Use auto in places where it is really obvious what the type is.Gravatar Sadie Powell2022-09-041-1/+1
* | Fix some warnings noticed by the readability-* clang-tidy checkers.Gravatar Sadie Powell2022-09-031-2/+2
* | 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-111-2/+2
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-6/+6
* | Add a typedef for a mode rank.Gravatar Sadie Powell2022-05-171-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-05-071-4/+15
|\|
| * Make linking servers over UNIX sockets less difficult.•••Closes #1730. Gravatar Sadie Powell2022-05-071-4/+15
* | Rewrite logging calls to use the new APIs.Gravatar Sadie Powell2022-05-011-3/+3
* | Fix the case of Membership::GetRank.Gravatar Sadie Powell2022-01-311-1/+1
* | Always catch exceptions as a constant reference.Gravatar Sadie Powell2022-01-091-1/+1
* | Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-8/+8