aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree
Commit message (Expand)AuthorAgeFilesLines
* Merge the svshold module into the services module.Gravatar Sadie Powell2023-07-011-0/+2
* Fix remote users on legacy servers not having a real username.Gravatar Sadie Powell2023-06-291-2/+1
* 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. Gravatar Sadie Powell2023-06-298-28/+49
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-06-172-2/+2
|\
| * Update copyright headers.Gravatar InspIRCd Robot2023-06-162-2/+2
* | Fix extracting data from the 1205 version/fullversion SINFO keys.Gravatar Sadie Powell2023-06-041-13/+20
* | Fix rewriting commands in the 1205 compat layer.Gravatar Sadie Powell2023-06-031-2/+2
* | Fix calling c_str() for parameters that can take a std::string.Gravatar Sadie Powell2023-05-312-2/+2
* | Convert DelLine from const char* to const std::string&.Gravatar Sadie Powell2023-05-301-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-05-302-1/+13
|\|
| * Log when a server sends an unexpected command post-authentication.Gravatar Sadie Powell2023-05-291-0/+12
| * Make it clear that <link:port> is only required for IP listeners.Gravatar Sadie Powell2023-05-261-1/+1
* | Fix casing of metadata in function and event names.•••Metadata is one word not two so it shouldn't be capitalised like this. Gravatar Sadie Powell2023-05-305-14/+14
* | Rename duration to timeutils and relocate InspIRCd::TimeString.Gravatar Sadie Powell2023-05-104-5/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-281-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2023-04-281-1/+1
* | <link:sctp> is for outgoing connections not incoming connections.Gravatar Sadie Powell2023-04-201-1/+1
* | Remove GetSID, rename sid to ServerId.Gravatar Sadie Powell2023-02-288-9/+24
* | Merge the servprotect module into the services module.Gravatar Sadie Powell2023-02-191-1/+1
* | Expose the removed away message in OnUserBack.Gravatar Sadie Powell2023-02-033-3/+4
* | Allow bouncers to introduce a user as away.Gravatar Sadie Powell2023-02-031-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-02-031-0/+6
|\|
| * Fix missing some data when synchronising a new user over a link.Gravatar Sadie Powell2023-02-031-0/+6
* | Replace getInt/getUInt/getFloat with type safe templated functions.Gravatar Sadie Powell2023-01-251-1/+1
* | Refactor the caching methods in User and rename to make more sense.Gravatar Sadie Powell2023-01-248-10/+10
* | Convert log calls to use fmtlib format stringsGravatar Sadie Powell2023-01-249-26/+26
* | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings.Gravatar Sadie Powell2023-01-2319-61/+60
* | Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-238-20/+27
* | Move duration functions to their own header.Gravatar Sadie Powell2023-01-233-3/+6
* | Convert various enums to strongly typed scoped enums.Gravatar Sadie Powell2023-01-222-3/+3
* | Add support for linking servers over SCTP sockets.Gravatar Sadie Powell2023-01-163-1/+10
* | Various improvements to the cloak system.•••- Only rewrite cloak => cloaking if the cloak_md5 module is also loaded. - Include the cloak method in the link data. - If 1206 servers are using different cloak methods then ignore the other data when telling operators about the link failure. - Clean up the code in a few places. Gravatar Sadie Powell2023-01-131-1/+1
* | Convert the cloak_md5 module to the new cloak system.Gravatar Sadie Powell2023-01-132-2/+4
* | Const correct various functions.Gravatar Sadie Powell2023-01-112-2/+2
* | Make some functions that don't use `this` static.Gravatar Sadie Powell2023-01-111-2/+2
* | Fix calling various static functions through a type instance.Gravatar Sadie Powell2023-01-117-12/+12
* | Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-1023-48/+48
* | Avoid copying various shared_ptr usages when not necessary.Gravatar Sadie Powell2023-01-109-17/+17
* | Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-102-4/+4
* | Add a helper class for creating a reference to a DNS manager.Gravatar Sadie Powell2023-01-052-2/+2
* | Sync whether an oper login was performed automatically.Gravatar Sadie Powell2023-01-033-6/+21
* | Allow synching oper privileges between servers.Gravatar Sadie Powell2023-01-021-8/+67
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-0131-33/+20
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-3032-34/+20
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-12-253-3/+3
|\|
| * Consistently limit the range for config port fields.Gravatar Sadie Powell2022-12-191-1/+1
| * 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