Age | Commit message (Collapse) | Author |
|
|
|
|
|
Don't ignore message tags on ServerCommands, and avoid creating
duplicate CommandBase::Params instances
|
|
When a user (U1) sends a PRIVMSG to a server (S1), which sends it to S2, which finally
sends it to S3 to send to U2, S2 doesn't send the tags it received on
the command from S1 to S3.
|
|
|
|
If no bind address was specified then one would be
created which had an incompatible address family to
the address that the server was trying to connect to.
|
|
|
|
- Remove the address/port overloads of BeginConnect.
- Change DoConnect to take a sockaddrs instead of an address/port.
|
|
|
|
|
|
|
|
Closes #1569.
|
|
a few other modules where it fits better than just showing seconds.
|
|
|
|
|
|
Show the reason in manual xline removal SNOTICEs, just like
expiry SNOTICEs do.
This modifies XLineManager::DelLine() to require another string
reference passed to it.
Requested by @Robby-.
|
|
If the casemapping is set to ascii, advertise the m_ascii module to 2.0
to allow use of the m_ascii extras module for 2.0
|
|
|
|
|
|
Closes #1560.
|
|
- Change any "-Line", ":Line", or "*line" to "-line" throughout
the X-line code, comments, and documentation.
- Add periods to the end of some notices.
- Correct a typo in the Q-line code comments.
- Update the filter module documentation (shun addition).
Co-authored-by: Robby <robby@chatbelgie.be>
|
|
|
|
|
|
|
|
|
|
We don't send any of these anymore.
|
|
A server introduction is only a burst if all of the parent servers
of it are not bursting.
Fixes #1527.
|
|
The REHASH command is not routed like a normal command. When a
rehash that needs to be forwarded is received the local server
forwards it indirectly by calling the local REHASH handler which
then calls the OnPreRehash hook. This results in the OnPreRehash
hook being called whilst loopCall is true.
The bug which this check was added to fix seems to no longer be
present so no alternate fix for that seems necessary.
Closes #1537.
|
|
|
|
The former was a thin wrapper around atol and brought with it all
of the weird parsing logic of atol which is almost never what is
actually wanted. It also almost never returned the numeric type
which is actually wanted which can cause weird issues when casting.
|
|
|
|
|
|
|
|
- Remove the CHANMODES, USERMODES, and PREFIX tokens in the 1205
protocol. These have entirely been superceded by the CHANMODES
and USERMODES CAPAB commands.
- Only compare the 1202 PREFIX tokens if the remote server did not
send CAPAB CHANMODES. This replicates the existing behaviour
used for the CHANMODES token.
- Fix checking whether the remote server has an appropriate case
mapping. If it is not sent we assume it is the same as the local
server as always. This should prevent issues with people using
services packages that do not send this token yet.
- Fix checking if the user modes are mismatched and then promptly
overwriting the error message with mismatched channel modes.
- Fix servers not being able to tell whether a mode on the remote
server is a prefixless prefix mode. Requires the 1205 protocol.
- Fix servers that receive CAPAB CHANMODES or CAPAB USERMODES not
checking the type of those modes. Requires the 1205 protocol.
|
|
|
|
Closes #331.
|
|
This restores previous behaviour which was lost when the original
line parameter was removed.
|
|
Co-authored-by: Attila Molnar <attilamolnar@hush.com>
|
|
OnSetAway has been replaced with four events. OnUserPreAway and
OnUserPreBack can be used to deny an away state change and/or
change the away message of a local user. OnUserAway and OnUserBack
allow modules to be notified that a user's away state has changed.
|
|
This simplifies the logic of irc::tokenparser considerably and
removes all of the magic index guessing that was used previously.
|
|
Special tokenisation rules are not necessary here.
|
|
In the brave new world of message tags and alternate wire formats
this is no longer something that is appropriate to expose.
In reality it was only ever used by m_alias which now reconstitutes
the command name and parameters into a RFC 1459-style message for
whatever it needs to do.
|
|
|
|
|
|
|
|
|
|
|
|
This can also be used with different types of collection containing
values which are not a string.
|
|
This is presently a typedef but will soon be replaced with a class
that encapsulates both tags and parameters.
|
|
|