Skip to content

Commit

Permalink
Add ISUPPORT CLIENTTAGDENY=*
Browse files Browse the repository at this point in the history
  • Loading branch information
progval authored and spb committed Aug 10, 2024
1 parent 6e1f369 commit 20718df
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sable_ircd/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,11 @@ impl ClientServer {

ret.add(ISupportEntry::string("CASEMAPPING", "ascii"));

// https://ircv3.net/specs/extensions/message-tags#rpl_isupport-tokens
// Tell clients all client tags are rejected, so conforming clients won't
// even try to send TAGMSG (which we don't support yet).
ret.add(ISupportEntry::string("CLIENTTAGDENY", "*"));

ret.add(ISupportEntry::int(
"HOSTLEN",
Hostname::LENGTH.try_into().unwrap(),
Expand Down

0 comments on commit 20718df

Please sign in to comment.