]> jfr.im git - irc/rqf/shadowircd.git/blob - doc/technical/ts6-protocol.txt
902cdd77e08c5c3cbeb0feef011922b017c7aa3c
[irc/rqf/shadowircd.git] / doc / technical / ts6-protocol.txt
1 TS6 protocol description
2 Written by Jilles Tjoelker
3
4 General format: much like rfc1459
5 Maximum parameters for a command: 15 (this does not include the prefix
6 and command name)
7
8 SID: a server's unique ID. It is configured in each server and consists of
9 a digit and two alphanumerics. Sending SIDs with lowercase letters is
10 questionable.
11
12 UID: a client's unique ID. It consists of the server's SID and six
13 alphanumerics (so it is nine characters long). The first of the alphanumerics
14 should be a letter, numbers are legal but reserved for future use.
15
16 hunted: a parameter type used for various remote requests. From local users,
17 nicknames and server names are accepted, possibly with wildcards; from servers,
18 UIDs/SIDs (sending names or even wildcards is deprecated). This is done with
19 the function hunt_server(). Any rate limiting should be done locally.
20
21 duration: a parameter type used for ban durations. It is a duration in seconds.
22 A value of 0 means a permanent ban.
23
24 propagation: to which other servers the command is sent
25
26 For all commands with a hunted parameter, the propagation is determined by
27 that, and not otherwise specified.
28
29 For all commands with a target server mask parameter, the propagation is
30 determined by that, and not otherwise specified. The command is sent to all
31 servers with names matching the given mask (for example '*', '*.example.com',
32 'irc.example.com'). Those servers do not have to be directly connected.
33 Targets cannot be SIDs.
34
35 Propagation broadcast means the command is sent to all servers.
36
37 Propagation one-to-one means the command is only sent to the target or the
38 server the target is on.
39
40 Propagation none means the command is never sent to another server if it is
41 received.
42
43 For some other commands, the propagation depends on the parameters and is
44 described in text.
45
46 services server: server mentioned in a service{} block. There are no services
47 servers on EFnet.
48
49 service: client with umode +S. This implies that it is on a services server.
50
51 connection setup:
52 The initiator sends the PASS, CAPAB and SERVER messages. Upon receiving the
53 SERVER, the listener will check the information, and if it is valid, it will
54 send its own PASS, CAPAB and SERVER messages, followed by SVINFO and the burst.
55 Upon receiving the SERVER, the initiator will send SVINFO and the burst. If
56 ziplinks are used, SVINFO is the first compressed message.
57
58 The burst consists of SID and SERVER messages for all known servers, BAN
59 messages for all propagated bans, UID or EUID messages for all known users
60 (possibly followed by ENCAP REALHOST, ENCAP LOGIN and/or AWAY) and SJOIN
61 messages for all known channels (possibly followed by BMASK and/or TB).
62
63 user modes:
64 (all)
65 +D (deaf: does not receive channel messages)
66 +S (network service) (only settable on burst from a services server)
67 +a (appears as server administrator)
68 +i (invisible, see rfc1459)
69 +o (IRC operator, see rfc1459)
70 +w (wallops, see rfc1459) (always propagated for historical reasons)
71 (charybdis TS6)
72 +Q/+R/+g/+l/+s/+z (only locally effective)
73 +Z (ssl user) (only settable on burst)
74 possibly more added by modules
75
76 channel modes:
77 (all)
78 statuses
79 +o (prefix @) (ops)
80 +v (prefix +) (voice)
81 type A
82 +b (ban)
83 +e (ban exception) (capab: EX)
84 +I (invite exception) (capab: IE)
85 type B
86 +k (key: password required to join, <= 23 ascii chars, no : or , or whitespace)
87 type C
88 +l (limit: maximum number of members before further joins are disallowed)
89 type D
90 +m (moderated)
91 +n (no external messages)
92 +p (private: does not appear in /whois to non-members, no /knock allowed)
93 +r (only registered users may join) (only if a services server exists) (capab: SERVICES)
94 +s (secret)
95 +t (only chanops may change topic)
96 (charybdis TS6)
97 type A
98 +q (quiet)
99 type C
100 +f (forward: channel name <= 30 chars)
101 +j (join throttle: N:T with integer N and T)
102 type D
103 +F (free target for +f)
104 +L (large ban list)
105 +P (permanent: does not disappear when empty)
106 +Q (ignore forwards to this)
107 +c (strip colours)
108 +g (allow any member to /invite)
109 +z (send messages blocked by +m to chanops)
110
111 <numeric>
112 source: server
113 parameters: target, any...
114
115 The command name should be three decimal ASCII digits.
116
117 Propagates a "numeric" command reply, such as from a remote WHOIS request.
118
119 If the first digit is 0 (indicating a reply about the local connection), it
120 should be changed to 1 before propagation or sending to a user.
121
122 Numerics to the local server may be sent to opers.
123
124 To avoid infinite loops, servers should not send any replies to numerics.
125
126 The target can be:
127 - a client
128 propagation: one-to-one
129 - a channel name
130 propagation: all servers with -D users on the channel
131
132 Numerics to channels are broken in some older servers.
133
134 ADMIN
135 source: user
136 parameters: hunted
137
138 Remote ADMIN request.
139
140 AWAY
141 source: user
142 propagation: broadcast
143 parameters: opt. away reason
144
145 If the away reason is empty or not present, mark the user as not away.
146 Otherwise, mark the user as away.
147
148 Changing away reason from one non-empty string to another non-empty string
149 may not be propagated.
150
151 BAN
152 charybdis TS6
153 capab: BAN
154 source: any
155 propagation: broadcast (restricted)
156 parameters: type, user mask, host mask, creation TS, duration, lifetime, oper, reason
157
158 Propagates a network wide ban.
159
160 The type is K for K:lines; other types are reserved.
161
162 The creation TS indicates when this ban was last modified. An incoming ban MUST
163 be ignored and not propagated if the creation TS is older than the creation TS
164 of the current ban. If the ban is identical, it SHOULD NOT be propagated to
165 avoid unnecessary network traffic. (Two changes to bans that set the TS to the
166 same value may cause desynchronization.)
167
168 The duration is 0 for an unban and relative to the creation TS for a ban.
169 When the duration has passed, the ban is no longer active but it may still
170 be necessary to remember it.
171
172 The lifetime is relative to the creation TS and indicates for how long this
173 ban needs to be remembered and propagated. This MUST be at least the duration.
174 Initially, it is usually set the same as the duration but when the ban is
175 modified later, it SHOULD be set such that the modified ban is remembered at
176 least as long as the original ban. This ensures that the original ban does not
177 revive via split servers. This requirement is only a SHOULD to allow for
178 implementations that only inject bans and do not remember any; implementations
179 that remember and propagate bans MUST set the lifetime appropriately.
180
181 The oper field indicates the oper that originally set the ban. If this message
182 is the initial propagation of a change, it SHOULD be sent as * (an asterisk).
183
184 The reason field indicates the reason for the ban. Any part after a | (vertical
185 bar) MUST NOT be shown to normal users. The rest of the field and the creation
186 TS and duration MAY be shown to normal users.
187
188 BMASK
189 source: server
190 propagation: broadcast
191 parameters: channelTS, channel, type, space separated masks
192
193 If the channelTS in the message is greater (newer) than the current TS of
194 the channel, drop the message and do not propagate it.
195
196 Type is the mode letter of a ban-like mode. In efnet TS6 this is 'b', 'e' or
197 'I'. In charybdis TS6 additionally 'q' is possible.
198
199 Add all the masks to the given list of the channel.
200
201 All ban-like modes must be bursted using this command, not using MODE or TMODE.
202
203 CAPAB
204 source: unregistered server
205 propagation: none
206 parameters: space separated capability list
207
208 Sends capabilities of the server. This must include QS and ENCAP. It is also
209 strongly recommended to include EX, CHW, IE and KNOCK, and for charybdis TS6
210 also SAVE and EUID. For use with services, SERVICES and RSFNC are strongly
211 recommended.
212
213 The capabilities may depend on the configuration for the server they are sent
214 to.
215
216 CHGHOST
217 charybdis TS6
218 source: any
219 propagation: broadcast
220 parameters: client, new hostname
221
222 Changes the visible hostname of a client.
223
224 Opers are notified unless the source is a server or a service.
225
226 CONNECT
227 source: any
228 parameters: server to connect to, port, hunted
229
230 Remote connect request. A server WALLOPS should be sent by the receiving
231 server.
232
233 The port can be 0 for the default port.
234
235 DLINE
236 charybdis TS6
237 encap only
238 source: user
239 parameters: duration, mask, reason
240
241 Sets a D:line (IP ban checked directly after accepting connection).
242
243 The mask must be an IP address or CIDR mask.
244
245 ENCAP
246 source: any
247 parameters: target server mask, subcommand, opt. parameters...
248
249 Sends a command to matching servers. Propagation is independent of
250 understanding the subcommand.
251
252 Subcommands are listed elsewhere with "encap only".
253
254 ERROR
255 source: server or unregistered server
256 propagation: none
257 parameters: error message
258
259 Reports a (usually fatal) error with the connection.
260
261 Error messages may contain IP addresses and have a negative effect on server
262 IP hiding.
263
264 ETRACE
265 encap only
266 encap target: single server
267 source: oper
268 parameters: client
269
270 Remote ETRACE information request.
271
272 EUID
273 charybdis TS6
274 capab: EUID
275 source: server
276 parameters: nickname, hopcount, nickTS, umodes, username, visible hostname, IP address, UID, real hostname, account name, gecos
277 propagation: broadcast
278
279 Introduces a client. The client is on the source server of this command.
280
281 The account name is '0' if the user is not logged in with services.
282
283 Nick TS rules apply.
284
285 EUID is similar to UID but includes the ENCAP REALHOST and ENCAP LOGIN
286 information.
287
288 GCAP
289 encap only
290 encap target: *
291 source: server
292 parameters: space separated capability list
293
294 Capability list of remote server.
295
296 GLINE
297 efnet TS6
298 capab: GLN
299 source: user
300 parameters: user mask, host mask, reason
301 propagation: broadcast
302
303 Propagates a G:line vote. Once votes from three different opers (based on
304 user@host mask) on three different servers have arrived, trigger the G:line.
305 Pending G:lines expire after some time, usually ten minutes. Triggered G:lines
306 expire after a configured time which may differ across servers.
307
308 Requests from server connections must be propagated, unless they are found to
309 be syntactically invalid (e.g. '!' in user mask). Therefore, disabling glines
310 must not affect propagation, and too wide glines, double votes and glines that
311 already exist locally must still be propagated.
312
313 Of course, servers are free to reject gline requests from their own operators.
314
315 GUNGLINE
316 efnet TS6
317 encap only
318 encap target: *
319 source: user
320 parameters: user mask, host mask, reason
321 propagation: broadcast
322
323 Propagates a G:line removal vote. Once three votes have arrived (as with
324 G:lines), remove the G:line. Pending G:lines removals expire after some time,
325 usually ten minutes.
326
327 Pending G:line removals do not interact with pending G:lines. Triggering a
328 G:line does not affect a pending G:line removal. Triggering a G:line removal
329 does not affect a pending G:line.
330
331 INFO
332 source: user
333 parameters: hunted
334
335 Remote INFO request.
336
337 INVITE
338 source: user
339 parameters: target user, channel, opt. channelTS
340 propagation: one-to-one
341
342 Invites a user to a channel.
343
344 If the channelTS is greater (newer) than the current TS of the channel, drop
345 the message.
346
347 Not sending the channelTS parameter is deprecated.
348
349 JOIN
350 1.
351 source: user
352 parameters: '0' (one ASCII zero)
353 propagation: broadcast
354
355 Parts the source user from all channels.
356
357 2.
358 source: user
359 parameters: channelTS, channel, '+' (a plus sign)
360 propagation: broadcast
361
362 Joins the source user to the given channel. If the channel does not exist yet,
363 it is created with the given channelTS and no modes. If the channel already
364 exists and has a greater (newer) TS, wipe all simple modes and statuses and
365 change the TS, notifying local users of this but not servers (note that
366 ban-like modes remain intact; invites may or may not be cleared).
367
368 A JOIN is propagated with the new TS of the channel.
369
370 KICK
371 source: any
372 parameters: channel, target user, opt. reason
373 propagation: broadcast
374
375 Kicks the target user from the given channel.
376
377 Unless the channel's TS is 0, no check is done whether the source user has ops.
378
379 Not sending the reason parameter is questionable.
380
381 KILL
382 source: any
383 parameters: target user, path
384 propagation: broadcast
385
386 Removes the user from the network.
387
388 The format of the path parameter is some sort of description of the source of
389 the kill followed by a space and a parenthesized reason. To avoid overflow,
390 it is recommended not to add anything to the path.
391
392 KLINE
393 1.
394 encap only
395 source: user
396 parameters: duration, user mask, host mask, reason
397
398 Sets a K:line (ban on user@host).
399
400 2.
401 capab: KLN
402 source: user
403 parameters: target server mask, duration, user mask, host mask, reason
404
405 As form 1, deprecated.
406
407 KNOCK
408 capab: KNOCK
409 source: user
410 parameters: channel
411 propagation: broadcast
412
413 Requests an invite to a channel that is locked somehow (+ikl). Notifies all
414 operators of the channel. (In charybdis, on +g channels all members are
415 notified.)
416
417 This is broadcast so that each server can store when KNOCK was used last on
418 a channel.
419
420 LINKS
421 source: user
422 parameters: hunted, server mask
423
424 Remote LINKS request. The server mask limits which servers are listed.
425
426 LOCOPS
427 1.
428 encap only
429 source: user
430 parameters: text
431
432 Sends a message to operators (with umode +l set). This is intended to be
433 used for strict subsets of the network.
434
435 2.
436 capab: CLUSTER
437 source: user
438 parameters: target server mask, text
439
440 As form 1, deprecated.
441
442 LOGIN
443 encap only
444 source: user
445 parameters: account name
446
447 In a burst, states that the source user is logged in as the account.
448
449 LUSERS
450 source: user
451 parameters: server mask, hunted
452
453 Remote LUSERS request. Most servers ignore the server mask, treating it as '*'.
454
455 MODE
456 1.
457 source: user
458 parameters: client, umode changes
459 propagation: broadcast
460
461 Propagates a user mode change. The client parameter must refer to the same user
462 as the source.
463
464 Not all umodes are propagated to other servers.
465
466 2.
467 source: any
468 parameters: channel, cmode changes, opt. cmode parameters...
469
470 Propagates a channel mode change.
471
472 This is deprecated because the channelTS is not included. If it is received,
473 it should be propagated as TMODE.
474
475 MOTD
476 source: user
477 parameters: hunted
478
479 Remote MOTD request.
480
481 NICK
482 1.
483 source: user
484 parameters: new nickname, new nickTS
485 propagation: broadcast
486
487 Propagates a nick change.
488
489 2.
490 source: server
491 parameters: nickname, hopcount, nickTS, umodes, username, hostname, server, gecos
492
493 Historic TS5 user introduction. The user is on the server indicated by the
494 server parameter; the source server is meaningless (local link).
495
496 NICKDELAY
497 charybdis TS6
498 encap only
499 encap target: *
500 source: services server
501 parameters: duration, nickname
502
503 If duration is greater than 0, makes the given nickname unavailable for that
504 time.
505
506 If duration is 0, removes a nick delay entry for the given nickname.
507
508 There may or may not be a client with the given nickname; this does not affect
509 the operation.
510
511 NOTICE
512 source: any
513 parameters: msgtarget, message
514
515 As PRIVMSG, except NOTICE messages are sent out, server sources are permitted
516 and most error messages are suppressed.
517
518 Servers may not send '$$', '$#' and opers@server notices. Older servers may
519 not allow servers to send to specific statuses on a channel.
520
521 OPERSPY
522 encap only
523 encap target: *
524 source: user
525 parameters: command name, parameters
526
527 Reports operspy usage.
528
529 OPERWALL
530 source: user
531 parameters: message
532 propagation: broadcast
533
534 Sends a message to operators (with umode +z set).
535
536 PART
537 source: user
538 parameters: comma separated channel list, message
539
540 Parts the source user from the given channels.
541
542 PASS
543 source: unregistered server
544 parameters: password, 'TS', TS version, SID
545
546 Sends the server link password, TS version and SID.
547
548 PING
549 source: any
550 parameters: origin, opt. destination server
551
552 Sends a PING to the destination server, which will reply with a PONG. If the
553 destination server parameter is not present, the server receiving the message
554 must reply.
555
556 The origin field is not used in the server protocol. It is sent as the name
557 (not UID/SID) of the source.
558
559 Remote PINGs are used for end-of-burst detection, therefore all servers must
560 implement them.
561
562 PONG
563 source: server
564 parameters: origin, destination
565
566 Routes a PONG back to the destination that originally sent the PING.
567
568 PRIVMSG
569 source: user
570 parameters: msgtarget, message
571
572 Sends a normal message (PRIVMSG) to the given target.
573
574 The target can be:
575 - a client
576 propagation: one-to-one
577 - a channel name
578 propagation: all servers with -D users on the channel
579 (cmode +m/+n should be checked everywhere, bans should not be checked
580 remotely)
581 - a status character ('@'/'+') followed by a channel name, to send to users
582 with that status or higher only.
583 capab: CHW
584 propagation: all servers with -D users with appropriate status
585 - '=' followed by a channel name, to send to chanops only, for cmode +z.
586 capab: CHW and EOPMOD
587 propagation: all servers with -D chanops
588 - a user@server message, to send to users on a specific server. The exact
589 meaning of the part before the '@' is not prescribed, except that "opers"
590 allows IRC operators to send to all IRC operators on the server in an
591 unspecified format.
592 propagation: one-to-one
593 - a message to all users on server names matching a mask ('$$' followed by mask)
594 propagation: broadcast
595 Only allowed to IRC operators.
596 - a message to all users with hostnames matching a mask ('$#' followed by mask).
597 Note that this is often implemented poorly.
598 propagation: broadcast
599 Only allowed to IRC operators.
600
601 In charybdis TS6, services may send to any channel and to statuses on any
602 channel.
603
604 PRIVS
605 charybdis TS6
606 encap only
607 encap target: single server
608 source: oper
609 parameters: client
610
611 Remote PRIVS information request.
612
613 QUIT
614 source: user
615 parameters: comment
616
617 Propagates quitting of a client. No QUIT should be sent for a client that
618 has been removed as result of a KILL message.
619
620 REALHOST
621 charybdis TS6
622 encap only
623 encap target: *
624 source: user
625 parameters: real hostname
626
627 In a burst, propagates the real host of a dynamically-spoofed user.
628
629 REHASH
630 charybdis TS6
631 encap only
632 source: user
633 parameters: opt. rehash type
634
635 Remote REHASH request. If the rehash type is omitted, it is equivalent to
636 a regular /rehash, otherwise it is equivalent to /rehash <rehash type>.
637
638 RESV
639 1.
640 encap only
641 source: user
642 parameters: duration, mask, reason
643
644 Sets a RESV, making a nickname mask or exact channel unavailable.
645
646 2.
647 capab: CLUSTER
648 source: user
649 parameters: target server mask, duration, mask, reason
650
651 As form 1, deprecated.
652
653 RSFNC
654 encap only
655 capab: RSFNC
656 encap target: single server
657 source: services server
658 parameters: target user, new nickname, old nickTS, new nickTS
659
660 Forces a nickname change and propagates it.
661
662 The command is ignored if the nick TS of the user is not equal to the old
663 nickTS parameter. If the new nickname already exists (and is not the target
664 user), it is killed first.
665
666 SASL
667 charybdis TS6
668 encap only
669 1.
670 encap target: *
671 source: server
672 parameters: source uid, '*', 'S', sasl mechanism name
673
674 Requests that a SASL agent (a service) initiate the authentication process.
675 The source uid is that of an unregistered client. This is why it is not sent
676 as the prefix.
677
678 2.
679 encap target: single server
680 source: server
681 parameters: source uid, target uid, mode, data
682
683 Part of a SASL authentication exchange. The mode is 'C' to send some data
684 (base64 encoded), or 'S' to end the exchange (data indicates type of
685 termination: 'A' for abort, 'F' for authentication failure, 'S' for
686 authentication success).
687
688 SAVE
689 capab: SAVE
690 source: server
691 propagation: broadcast
692 parameters: target uid, TS
693
694 Resolve a nick collision by changing a nickname to the UID.
695
696 The server should verify that the UID belongs to a registered user, the user
697 does not already have their UID as their nick and the TS matches the user's
698 nickTS. If not, drop the message.
699
700 SAVE should be propagated as a regular NICK change to links without SAVE capab.
701 present.
702
703 SERVER
704 1.
705 source: unregistered server
706 parameters: server name, hopcount, server description
707
708 Registers the connection as a server. PASS and CAPAB must have been sent
709 before, SVINFO should be sent afterwards.
710
711 If there is no such server configured or authentication failed, the connection
712 should be dropped.
713
714 This is propagated as a SID message.
715
716 2.
717 source: server
718 propagation: broadcast
719 parameters: server name, hopcount, server description
720
721 Introduces a new TS5 server, directly connected to the source of this command.
722 This is only used for jupes as TS5 servers may do little else than existing.
723
724 SID
725 source: server
726 propagation: broadcast
727 parameters: server name, hopcount, sid, server description
728
729 Introduces a new server, directly connected to the source of this command.
730
731 SIGNON
732 source: user
733 propagation: broadcast
734 parameters: new nickname, new username, new visible hostname, new nickTS, new login name
735
736 Broadcasts a change of several user parameters at once.
737
738 Currently only sent after an SVSLOGIN.
739
740 SJOIN
741 source: server
742 propagation: broadcast
743 parameters: channelTS, simple modes, opt. mode parameters..., nicklist
744
745 Broadcasts a channel creation or bursts a channel.
746
747 The nicklist consists of users joining the channel, with status prefixes for
748 their status ('@+', '@', '+' or ''), for example:
749 '@+1JJAAAAAB +2JJAAAA4C 1JJAAAADS'. All users must be behind the source server
750 so it is not possible to use this message to force users to join a channel.
751
752 The interpretation depends on the channelTS and the current TS of the channel.
753 If either is 0, set the channel's TS to 0 and accept all modes. Otherwise, if
754 the incoming channelTS is greater (newer), ignore the incoming simple modes
755 and statuses and join and propagate just the users. If the incoming channelTS
756 is lower (older), wipe all modes and change the TS, notifying local users of
757 this but not servers (invites may be cleared). In the latter case, kick on
758 split riding may happen: if the key (+k) differs or the incoming simple modes
759 include +i, kick all local users, sending KICK messages to servers.
760
761 An SJOIN is propagated with the new TS and modes of the channel. The statuses
762 are propagated if and only if they were accepted.
763
764 SJOIN must be used to propagate channel creation and in netbursts. For regular
765 users joining channels, JOIN must be used. Pseudoservers may use SJOIN to join
766 a user with ops.
767
768 SNOTE
769 charybdis TS6
770 encap only
771 source: server
772 parameters: snomask letter, text
773
774 Sends the text as a server notice from the source server to opers with the
775 given snomask set.
776
777 SQUIT
778 parameters: target server, comment
779
780 Removes the target server and all servers and users behind it from the network.
781
782 If the target server is the receiving server or the local link this came from,
783 this is an announcement that the link is being closed.
784
785 Otherwise, if the target server is locally connected, the server should send
786 a WALLOPS announcing the SQUIT.
787
788 STATS
789 source: user
790 parameters: stats letter, hunted
791
792 Remote STATS request. Privileges are checked on the server executing the
793 actual request.
794
795 SU
796 encap only
797 encap target: *
798 source: services server
799 parameters: target user, new login name (optional)
800
801 If the new login name is not present or empty, mark the target user as not
802 logged in, otherwise mark the target user as logged in as the given account.
803
804 SVINFO
805 source: server
806 propagation: none
807 parameters: current TS version, minimum TS version, '0', current time
808
809 Verifies TS protocol compatibility and clock. If anything is not in order,
810 the link is dropped.
811
812 The current TS version is the highest version supported by the source server
813 and the minimum TS version is the lowest version supported.
814
815 The current time is sent as a TS in the usual way.
816
817 SVSLOGIN
818 charybdis TS6
819 encap only
820 encap target: single server
821 source: services server
822 parameters: target, new nick, new username, new visible hostname, new login name
823
824 Sent after successful SASL authentication.
825
826 The target is a UID, typically an unregistered one.
827
828 Any of the "new" parameters can be '*' to leave the corresponding field
829 unchanged. The new login name can be '0' to log the user out.
830
831 If the UID is registered on the network, a SIGNON with the changes will be
832 broadcast, otherwise the changes will be stored, to be used when registration
833 completes.
834
835 TB
836 capab: TB
837 source: server
838 propagation: broadcast
839 parameters: channel, topicTS, opt. topic setter, topic
840
841 Propagates a channel topic as part of a burst.
842
843 If the channel had no topic yet or the topicTS in the message is older than
844 the topicTS of the current topic on the channel and the topics differ, set
845 the topic with topicTS and topic setter, and propagate the message. Otherwise
846 ignore the message and do not propagate it.
847
848 If the topic setter is not present, use a server name instead.
849
850 TIME
851 source: user
852 parameters: hunted
853
854 Remote TIME request.
855
856 TMODE
857 source: any
858 parameters: channelTS, channel, cmode changes, opt. cmode parameters...
859
860 Propagates a channel mode change.
861
862 If the channelTS is greater (newer) than the current TS of the channel, drop
863 the message.
864
865 On input, only the limit on parameters per line restricts how many cmode
866 parameters can be present. Apart from this, arbitrary modes shall be
867 processed. Redundant modes may be dropped. For example, +n-n may be applied and
868 propagated as +n-n, -n or (if the channel was already -n) nothing, but not as
869 +n.
870
871 The parameter for mode -k (removing a key) shall be ignored.
872
873 On output, at most ten cmode parameters should be sent; if there are more,
874 multiple TMODE messages should be sent.
875
876 TOPIC
877 source: user
878 propagation: broadcast
879 parameters: channel, topic
880
881 Propagates a channel topic change. The server may verify that the source has
882 ops in the channel.
883
884 The topicTS shall be set to the current time and the topic setter shall be
885 set indicating the source user. Note that this means that the topicTS of a
886 topic set with TOPIC is not necessarily consistent across the network.
887
888 TRACE
889 source: user
890 1.
891 parameters: hunted
892
893 Performs a trace to the target, sending 200 numerics from each server passing
894 the message on. The target server sends a description of the target followed
895 by a 262 numeric.
896
897 TRACE, STATS l and STATS L are the only commands using hunt_server that use the
898 hunted parameter for more than just determining which server the command
899 should be executed on.
900
901 2.
902 parameters: target name, hunted
903
904 Executes a trace command on the target server. No 200 numerics are sent.
905 The target name is a name, not a UID, and should be on the target server.
906
907 UID
908 source: server
909 propagation: broadcast
910 parameters: nickname, hopcount, nickTS, umodes, username, visible hostname, IP address, UID, gecos
911 propagation: broadcast
912
913 Introduces a client. The client is on the source server of this command.
914
915 Nick TS rules apply.
916
917 UNDLINE
918 charybdis TS6
919 encap only
920 source: user
921 parameters: mask
922
923 Removes a D:line (IP ban checked directly after accepting connection).
924
925 The mask must be an IP address or CIDR mask.
926
927 UNKLINE
928 1.
929 encap only
930 source: user
931 parameters: user mask, host mask
932
933 Removes a K:line (ban on user@host).
934
935 2.
936 capab: UNKLN
937 source: user
938 parameters: target server mask, user mask, host mask
939
940 As form 1, deprecated.
941
942 UNRESV
943 1.
944 encap only
945 source: user
946 parameters: mask
947
948 Removes a RESV.
949
950 2.
951 capab: CLUSTER
952 source: user
953 parameters: target server mask, mask
954
955 As form 1, deprecated.
956
957 UNXLINE
958 1.
959 encap only
960 source: user
961 parameters: mask
962
963 Removes an X:line (ban on realname).
964
965 2.
966 capab: CLUSTER
967 source: user
968 parameters: target server mask, mask
969
970 As form 1, deprecated.
971
972 USERS
973 source: user
974 parameters: hunted
975
976 Remote USERS request.
977
978 VERSION
979 source: any
980 parameters: hunted
981
982 Remote VERSION request.
983
984 WALLOPS
985 1.
986 source: user
987 parameters: message
988 propagation: broadcast
989
990 In efnet TS6, sends a message to operators (with umode +z set). This is a
991 deprecated equivalent to OPERWALL.
992
993 In charybdis TS6, sends a message to local users with umode +w set (or possibly
994 another indication that WALLOPS messages should be sent), including non-opers.
995
996 2.
997 source: server
998 parameters: message
999 propagation: broadcast
1000
1001 Sends a message to local users with umode +w set (or possibly another
1002 indication that WALLOPS messages should be sent).
1003
1004 In efnet TS6 this may include non-opers, in charybdis TS6 this may only be
1005 sent to opers.
1006
1007 WHOIS
1008 source: user
1009 parameters: hunted, target nick
1010
1011 Remote WHOIS request.
1012
1013 XLINE
1014 1.
1015 encap only
1016 source: user
1017 parameters: duration, mask, reason
1018
1019 Sets an X:line (ban on realname).
1020
1021 2.
1022 capab: CLUSTER
1023 source: user
1024 parameters: target server mask, duration, mask, reason
1025
1026 As form 1, deprecated.
1027
1028 Local only commands (charybdis 3.1):
1029
1030 ACCEPT
1031 AUTHENTICATE
1032 CAP
1033 CHALLENGE
1034 CHANTRACE
1035 CLOSE
1036 CNOTICE
1037 CPRIVMSG
1038 DIE
1039 GET
1040 HELP
1041 ISON
1042 LIST
1043 MAP
1044 MASKTRACE
1045 MODLIST
1046 MODLOAD
1047 MODRELOAD
1048 MODRESTART
1049 MODUNLOAD
1050 MONITOR
1051 NAMES
1052 OPER
1053 POST
1054 PUT
1055 RESTART
1056 SCAN
1057 SET
1058 TESTGECOS
1059 TESTLINE
1060 TESTMASK
1061 UHELP
1062 UNREJECT
1063 USER
1064 USERHOST
1065 WEBIRC
1066 WHO
1067 WHOWAS