Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / doc / p10.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 <HTML>
3 <HEAD>
4    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
5    <META NAME="GENERATOR" CONTENT="Mozilla/4.07 [en] (X11; I; Linux 2.2.13 i586) [Netscape]">
6    <TITLE>Undernet P10 Protocol and Interface Specification</TITLE>
7 </HEAD>
8 <BODY>
9
10 <H2>
11 <A NAME="top"></A><FONT SIZE=+3>Undernet P10 Protocol and Interface Specification</FONT></H2>
12 <I>(As of ircu 2.10.10)</I>
13 <H2>
14 Undernet Coder-com, <TT>coder-com@undernet.org</TT></H2>
15 v0.10, 2nd March 2000.
16 <P>
17 <HR ALIGN=CENTER WIDTH=100% SIZE=2><I>This document aims to be a practical
18 guide for implementing and maintaining the protocol, not just a reference
19 manual.</I>
20 <P>This document is "work in progress" and being continually updated :)
21 <HR 
22   ALIGN=CENTER WIDTH=100% SIZE=2>
23 <BR><FONT SIZE=+2>1. <B><A HREF="#chap1">Introduction</A></B></FONT>
24 <P><FONT SIZE=+2>2. <B><A HREF="#chap2">General concepts and background</A></B></FONT>
25 <BLOCKQUOTE><FONT SIZE=+0>2.1 <A HREF="#chap2.1">Concepts</A>.</FONT>
26 <BR><FONT SIZE=+0>2.2 <A HREF="#chap2.2">Token Table</A>.</FONT></BLOCKQUOTE>
27
28 <H2>
29 3. <A HREF="#chap3">Registration and syncronisation</A></H2>
30
31 <UL>
32 <LI>
33 <FONT SIZE=+0>3.1 <A HREF="#chap3.1">Server registration and authentication</A>.</FONT></LI>
34
35 <LI>
36 <FONT SIZE=+0>3.2 <A HREF="#chap3.2">Network database resyncronisation</A>.</FONT></LI>
37
38 <LI>
39 <FONT SIZE=+0>3.3 <A HREF="#chap3.3">Summary</A>.</FONT></LI>
40 </UL>
41
42 <H2>
43 4. <A HREF="#chap4">Continous operation</A></H2>
44
45 <UL>
46 <LI>
47 4.1 Channel operations.</LI>
48
49 <LI>
50 4.2 Messaging.</LI>
51
52 <LI>
53 4.3 Setting G-Lines.</LI>
54
55 <LI>
56 4.4 ...</LI>
57 </UL>
58
59 <H2>
60 4. Programmers reference: Function headers</H2>
61
62 <UL>
63 <LI>
64 <FONT SIZE=+0>4.1 ms_nick</FONT></LI>
65
66 <LI>
67 <FONT SIZE=+0>4.2 m_burst</FONT></LI>
68
69 <LI>
70 <FONT SIZE=+0>4.3 ..etc</FONT></LI>
71 </UL>
72
73 <H2>
74 5. <A HREF="#chap5">Programmers reference: Client/Server Structures</A></H2>
75
76 <H2>
77 6. <A HREF="#chap7">FAQ</A></H2>
78
79 <H2>
80 7. Acknowledgements and disclaimer</H2>
81
82 <H2>
83 8. <A HREF="#chap8">Update History</A></H2>
84
85 <BLOCKQUOTE>
86 <LI>
87 <A HREF="#chap8.1">TODO List</A></LI>
88 </BLOCKQUOTE>
89
90 <CENTER>
91 <HR ALIGN=CENTER WIDTH=100% SIZE=2></CENTER>
92
93 <P><A NAME="chap1"></A><B><FONT SIZE=+2>1. Introduction</FONT></B>
94 <P><FONT FACE="Arial,Helvetica"><FONT SIZE=-1><B>[</B><A HREF="#top">Back</A><B>]</B></FONT></FONT>
95 <BR>
96 <HR ALIGN=LEFT WIDTH=100% SIZE=2>
97 <P><A NAME="chap2"></A><B><FONT SIZE=+2>2. General concepts and background</FONT></B>
98 <P><A NAME="chap2.1"></A><B><FONT SIZE=+1>2.1 Concepts</FONT></B>
99 <P>The undernet P10 protocol uses a scheme of "Numerics" to uniquenly identify
100 a client or server within the network. Each server has its own unique numeric
101 (0 -> 4095) and each client has its own numeric within that server (0->262,143).
102 <P>The numerics are encoded into a Base64 stream to maintain human readable
103 data flow and reduce the size of the messages. The Base64 character set
104 used in ircu is included below, this defines all valid characters allowed
105 in a Base64 numeric with "A" representing 0 and "]" representing 63.
106 <BLOCKQUOTE>
107 <PRE><TT><FONT COLOR="#00007F">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789[]</FONT></TT></PRE>
108 </BLOCKQUOTE>
109 Server numerics consist of 2 characters, with the minimum, 0, being represented
110 by "AA", and the maximum, 4095, being represented by "]]". Client numerics
111 are 3 characters long, with the minimum, 0, being represented by "AAA",
112 and the maximum, 262,143, being represented by "]]]". The unique identifier
113 of a client on the network consists of a combination of both the server
114 and client numeric in the format SSCCC.
115 <P>As an example, consider a server "irc.undernet.org" which has a numeric
116 of 2, translating to "AC" in Base64. On this server exists a client, whom
117 has been allocated the numeric 63 (which translates to "AA]" in Base64).
118 Therefore, the unique identifier of this client on the network is "ACAA]".
119 From this, we can determine which server the message came from, aswell
120 as the client who sent it.
121 <P>These numerics are used to prefix every message issued on the stream
122 except for the initial "PASS" or "SERVER" message, which are not prefixed.
123 Therefore, every message that can be recieved from a server will consist
124 of the format:
125 <BLOCKQUOTE>
126 <PRE><FONT COLOR="#00007F">[NUMERIC PREFIX] [TOKEN] [DATA]</FONT></PRE>
127 </BLOCKQUOTE>
128 For Example:
129 <BLOCKQUOTE>
130 <PRE><FONT COLOR="#00007F">A[A5j P ABAAA :Foo.</FONT></PRE>
131 </BLOCKQUOTE>
132 <A NAME="chap2.2"></A><B><FONT SIZE=+1>2.2 Token Table</FONT></B>
133 <P>The following table lists all the acceptable messages, along with their
134 relevant "Token", which is used in the server&lt;>server protocol. The
135 aim of tokenisation is to reduce the bandwidth used during network communication
136 by reducing the length of common message identifiers.
137 <BR>&nbsp;
138 <CENTER><TABLE BORDER COLS=2 WIDTH="40%" >
139 <TR>
140 <TD><B>Message</B></TD>
141
142 <TD><B>Token</B></TD>
143 </TR>
144
145 <TR>
146 <TD><FONT SIZE=-1>PRIVMSG</FONT></TD>
147
148 <TD><FONT SIZE=-1>P</FONT></TD>
149 </TR>
150
151 <TR>
152 <TD><FONT SIZE=-1>WHO</FONT></TD>
153
154 <TD><FONT SIZE=-1>H</FONT></TD>
155 </TR>
156
157 <TR>
158 <TD><FONT SIZE=-1>WHOIS</FONT></TD>
159
160 <TD><FONT SIZE=-1>W</FONT></TD>
161 </TR>
162
163 <TR>
164 <TD><FONT SIZE=-1>WHOWAS</FONT></TD>
165
166 <TD><FONT SIZE=-1>X</FONT></TD>
167 </TR>
168
169 <TR>
170 <TD><FONT SIZE=-1>USER</FONT></TD>
171
172 <TD><FONT SIZE=-1>USER</FONT></TD>
173 </TR>
174
175 <TR>
176 <TD><FONT SIZE=-1>NICK</FONT></TD>
177
178 <TD><FONT SIZE=-1>N</FONT></TD>
179 </TR>
180
181 <TR>
182 <TD><FONT SIZE=-1>SERVER</FONT></TD>
183
184 <TD><FONT SIZE=-1>S</FONT></TD>
185 </TR>
186
187 <TR>
188 <TD><FONT SIZE=-1>LIST</FONT></TD>
189
190 <TD><FONT SIZE=-1>LIST</FONT></TD>
191 </TR>
192
193 <TR>
194 <TD><FONT SIZE=-1>TOPIC</FONT></TD>
195
196 <TD><FONT SIZE=-1>T</FONT></TD>
197 </TR>
198
199 <TR>
200 <TD><FONT SIZE=-1>INVITE</FONT></TD>
201
202 <TD><FONT SIZE=-1>I</FONT></TD>
203 </TR>
204
205 <TR>
206 <TD><FONT SIZE=-1>VERSION</FONT></TD>
207
208 <TD><FONT SIZE=-1>V</FONT></TD>
209 </TR>
210
211 <TR>
212 <TD><FONT SIZE=-1>QUIT</FONT></TD>
213
214 <TD><FONT SIZE=-1>Q</FONT></TD>
215 </TR>
216
217 <TR>
218 <TD><FONT SIZE=-1>SQUIT</FONT></TD>
219
220 <TD><FONT SIZE=-1>SQ</FONT></TD>
221 </TR>
222
223 <TR>
224 <TD><FONT SIZE=-1>KILL</FONT></TD>
225
226 <TD><FONT SIZE=-1>D</FONT></TD>
227 </TR>
228
229 <TR>
230 <TD><FONT SIZE=-1>INFO</FONT></TD>
231
232 <TD><FONT SIZE=-1>F</FONT></TD>
233 </TR>
234
235 <TR>
236 <TD><FONT SIZE=-1>LINKS</FONT></TD>
237
238 <TD><FONT SIZE=-1>LI</FONT></TD>
239 </TR>
240
241 <TR>
242 <TD><FONT SIZE=-1>STATS</FONT></TD>
243
244 <TD><FONT SIZE=-1>R</FONT></TD>
245 </TR>
246
247 <TR>
248 <TD><FONT SIZE=-1>HELP</FONT></TD>
249
250 <TD><FONT SIZE=-1>HELP</FONT></TD>
251 </TR>
252
253 <TR>
254 <TD><FONT SIZE=-1>ERROR</FONT></TD>
255
256 <TD><FONT SIZE=-1>Y</FONT></TD>
257 </TR>
258
259 <TR>
260 <TD><FONT SIZE=-1>AWAY</FONT></TD>
261
262 <TD><FONT SIZE=-1>A</FONT></TD>
263 </TR>
264
265 <TR>
266 <TD><FONT SIZE=-1>CONNECT</FONT></TD>
267
268 <TD><FONT SIZE=-1>CO</FONT></TD>
269 </TR>
270
271 <TR>
272 <TD><FONT SIZE=-1>MAP</FONT></TD>
273
274 <TD><FONT SIZE=-1>MAP</FONT></TD>
275 </TR>
276
277 <TR>
278 <TD><FONT SIZE=-1>PING</FONT></TD>
279
280 <TD><FONT SIZE=-1>G</FONT></TD>
281 </TR>
282
283 <TR>
284 <TD><FONT SIZE=-1>PONG</FONT></TD>
285
286 <TD><FONT SIZE=-1>Z</FONT></TD>
287 </TR>
288
289 <TR>
290 <TD><FONT SIZE=-1>OPER</FONT></TD>
291
292 <TD><FONT SIZE=-1>OPER</FONT></TD>
293 </TR>
294
295 <TR>
296 <TD><FONT SIZE=-1>PASS</FONT></TD>
297
298 <TD><FONT SIZE=-1>PA</FONT></TD>
299 </TR>
300
301 <TR>
302 <TD><FONT SIZE=-1>WALLOPS</FONT></TD>
303
304 <TD><FONT SIZE=-1>WA</FONT></TD>
305 </TR>
306
307 <TR>
308 <TD><FONT SIZE=-1>DESYNCH</FONT></TD>
309
310 <TD><FONT SIZE=-1>DS</FONT></TD>
311 </TR>
312
313 <TR>
314 <TD><FONT SIZE=-1>TIME</FONT></TD>
315
316 <TD><FONT SIZE=-1>TI</FONT></TD>
317 </TR>
318
319 <TR>
320 <TD><FONT SIZE=-1>SETTIME</FONT></TD>
321
322 <TD><FONT SIZE=-1>SE</FONT></TD>
323 </TR>
324
325 <TR>
326 <TD><FONT SIZE=-1>RPING</FONT></TD>
327
328 <TD><FONT SIZE=-1>RI</FONT></TD>
329 </TR>
330
331 <TR>
332 <TD><FONT SIZE=-1>RPONG</FONT></TD>
333
334 <TD><FONT SIZE=-1>RO</FONT></TD>
335 </TR>
336
337 <TR>
338 <TD><FONT SIZE=-1>NAMES</FONT></TD>
339
340 <TD><FONT SIZE=-1>E</FONT></TD>
341 </TR>
342
343 <TR>
344 <TD><FONT SIZE=-1>ADMIN</FONT></TD>
345
346 <TD><FONT SIZE=-1>AD</FONT></TD>
347 </TR>
348
349 <TR>
350 <TD><FONT SIZE=-1>TRACE</FONT></TD>
351
352 <TD><FONT SIZE=-1>TR</FONT></TD>
353 </TR>
354
355 <TR>
356 <TD><FONT SIZE=-1>NOTICE</FONT></TD>
357
358 <TD><FONT SIZE=-1>O</FONT></TD>
359 </TR>
360
361 <TR>
362 <TD><FONT SIZE=-1>WALLCHOPS</FONT></TD>
363
364 <TD><FONT SIZE=-1>WC</FONT></TD>
365 </TR>
366
367 <TR>
368 <TD><FONT SIZE=-1>CPRIVMSG</FONT></TD>
369
370 <TD><FONT SIZE=-1>CP</FONT></TD>
371 </TR>
372
373 <TR>
374 <TD><FONT SIZE=-1>CNOTICE</FONT></TD>
375
376 <TD><FONT SIZE=-1>CN</FONT></TD>
377 </TR>
378
379 <TR>
380 <TD><FONT SIZE=-1>JOIN</FONT></TD>
381
382 <TD><FONT SIZE=-1>J</FONT></TD>
383 </TR>
384
385 <TR>
386 <TD><FONT SIZE=-1>PART</FONT></TD>
387
388 <TD><FONT SIZE=-1>L</FONT></TD>
389 </TR>
390
391 <TR>
392 <TD><FONT SIZE=-1>LUSERS</FONT></TD>
393
394 <TD><FONT SIZE=-1>LU</FONT></TD>
395 </TR>
396
397 <TR>
398 <TD><FONT SIZE=-1>MOTD</FONT></TD>
399
400 <TD><FONT SIZE=-1>MO</FONT></TD>
401 </TR>
402
403 <TR>
404 <TD><FONT SIZE=-1>MODE</FONT></TD>
405
406 <TD><FONT SIZE=-1>M</FONT></TD>
407 </TR>
408
409 <TR>
410 <TD><FONT SIZE=-1>KICK</FONT></TD>
411
412 <TD><FONT SIZE=-1>K</FONT></TD>
413 </TR>
414
415 <TR>
416 <TD><FONT SIZE=-1>USERHOST</FONT></TD>
417
418 <TD><FONT SIZE=-1>USERHOST</FONT></TD>
419 </TR>
420
421 <TR>
422 <TD><FONT SIZE=-1>USERIP</FONT></TD>
423
424 <TD><FONT SIZE=-1>USERIP</FONT></TD>
425 </TR>
426
427 <TR>
428 <TD><FONT SIZE=-1>ISON</FONT></TD>
429
430 <TD><FONT SIZE=-1>ISON</FONT></TD>
431 </TR>
432
433 <TR>
434 <TD><I><FONT SIZE=-1>SQUERY</FONT></I></TD>
435
436 <TD><I><FONT SIZE=-1>SQUERY</FONT></I></TD>
437 </TR>
438
439 <TR>
440 <TD><I><FONT SIZE=-1>SERVLIST</FONT></I></TD>
441
442 <TD><I><FONT SIZE=-1>SERVLIST</FONT></I></TD>
443 </TR>
444
445 <TR>
446 <TD><I><FONT SIZE=-1>SERVSET</FONT></I></TD>
447
448 <TD><I><FONT SIZE=-1>SERVSET</FONT></I></TD>
449 </TR>
450
451 <TR>
452 <TD><FONT SIZE=-1>REHASH</FONT></TD>
453
454 <TD><FONT SIZE=-1>REHASH</FONT></TD>
455 </TR>
456
457 <TR>
458 <TD><FONT SIZE=-1>RESTART</FONT></TD>
459
460 <TD><FONT SIZE=-1>RESTART</FONT></TD>
461 </TR>
462
463 <TR>
464 <TD><FONT SIZE=-1>CLOSE</FONT></TD>
465
466 <TD><FONT SIZE=-1>CLOSE</FONT></TD>
467 </TR>
468
469 <TR>
470 <TD><FONT SIZE=-1>DIE</FONT></TD>
471
472 <TD><FONT SIZE=-1>DIE</FONT></TD>
473 </TR>
474
475 <TR>
476 <TD><FONT SIZE=-1>HASH</FONT></TD>
477
478 <TD><FONT SIZE=-1>HASH</FONT></TD>
479 </TR>
480
481 <TR>
482 <TD><FONT SIZE=-1>DNS</FONT></TD>
483
484 <TD><FONT SIZE=-1>DNS</FONT></TD>
485 </TR>
486
487 <TR>
488 <TD><FONT SIZE=-1>SILENCE</FONT></TD>
489
490 <TD><FONT SIZE=-1>U</FONT></TD>
491 </TR>
492
493 <TR>
494 <TD><FONT SIZE=-1>GLINE</FONT></TD>
495
496 <TD><FONT SIZE=-1>GL</FONT></TD>
497 </TR>
498
499 <TR>
500 <TD><FONT SIZE=-1>BURST</FONT></TD>
501
502 <TD><FONT SIZE=-1>B</FONT></TD>
503 </TR>
504
505 <TR>
506 <TD><FONT SIZE=-1>CREATE</FONT></TD>
507
508 <TD><FONT SIZE=-1>C</FONT></TD>
509 </TR>
510
511 <TR>
512 <TD><FONT SIZE=-1>DESTRUCT</FONT></TD>
513
514 <TD><FONT SIZE=-1>DE</FONT></TD>
515 </TR>
516
517 <TR>
518 <TD><FONT SIZE=-1>END_OF_BURST</FONT></TD>
519
520 <TD><FONT SIZE=-1>EB</FONT></TD>
521 </TR>
522
523 <TR>
524 <TD><FONT SIZE=-1>END_OF_BURST_ACK</FONT></TD>
525
526 <TD><FONT SIZE=-1>EA</FONT></TD>
527 </TR>
528
529 <TR>
530 <TD><FONT SIZE=-1>PROTO</FONT></TD>
531
532 <TD><FONT SIZE=-1>PROTO</FONT></TD>
533 </TR>
534
535 <TR>
536 <TD><FONT SIZE=-1>JUPE</FONT></TD>
537
538 <TD><FONT SIZE=-1>JU</FONT></TD>
539 </TR>
540 </TABLE></CENTER>
541 <FONT FACE="Arial,Helvetica"><FONT SIZE=-1><B>[</B><A HREF="#top">Back</A><B>]</B></FONT></FONT>
542 <BR>
543 <HR ALIGN=LEFT WIDTH=100% SIZE=2>
544 <P><A NAME="chap3"></A><B><FONT SIZE=+2>3. Registration and syncronisation</FONT></B>
545 <P><A NAME="chap3.1"></A><B><FONT SIZE=+1>3.1 Server registration and authentication</FONT></B>
546 <P>After a TCP connection has been established, the server initally introduces
547 itself via a "PASS" message as follows:
548 <BLOCKQUOTE>
549 <PRE><FONT COLOR="#00007F">PASS :[PASSWORD]</FONT></PRE>
550 </BLOCKQUOTE>
551 "PASSWORD" is simply compared with the password present in the destination
552 servers config file, and is used to confirm credentials after the "SERVER"
553 message has been recieved, as follows:
554 <BLOCKQUOTE>
555 <PRE><TT><FONT COLOR="#00007F">SERVER [SERVERNAME] [HOPCOUNT] [START TIME] [LINK TIME] [PROTOCOL] [NUMERIC/MAXCONN] :[DESCRIPTION]</FONT></TT></PRE>
556 </BLOCKQUOTE>
557 For Example:
558 <BLOCKQUOTE>
559 <PRE><B>1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3 4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6&nbsp;&nbsp; 7&nbsp;&nbsp;&nbsp;&nbsp; 8&nbsp;
560 </B>SERVER irc.undernet.org 1 933022556 947908144 J10 AA]]] :[127.0.0.1] A Undernet Server.</PRE>
561 </BLOCKQUOTE>
562 <I>Notes:</I>
563 <OL>
564 <LI>
565 The SERVER message, indicating this connection wishes to introduce a new
566 server to the network.</LI>
567
568 <LI>
569 &nbsp;The name of the server you are introducing, a valid server name consists
570 of [..defn..].</LI>
571
572 <LI>
573 &nbsp;The hop count of the server you are introducing, this is always 1
574 when you are introducing yourself.</LI>
575
576 <LI>
577 &nbsp;The epoch timestamp specifying when the ircd was started.</LI>
578
579 <LI>
580 &nbsp;The epoch timestamp specifying the time the server initiated the
581 link to the network.</LI>
582
583 <LI>
584 &nbsp;The Protocol identifier of this server.</LI>
585
586 <OL>
587 <LI>
588 This token informs the network which protocol it is compliant with, eg:
589 If it is a P10 compliant server, then the token will be "P10".</LI>
590
591 <LI>
592 &nbsp;If the server being introduced has not yet successfully synced its
593 database with the network (Completed its net.burst - see 3.2), then the
594 Protocol token should be prefixed with a J, instead of a P (Eg: J10) to
595 indicate it is currently still <B>j</B>oining the network.</LI>
596
597 <LI>
598 &nbsp;The protocol token should always be JXX when the server is introducing
599 <B>itself</B>.</LI>
600 </OL>
601
602 <LI>
603 The numeric, and maximum connections identifier for this server.</LI>
604
605 <OL>
606 <LI>
607 This token is formatted exactly the same as a client numeric is formatted.
608 The first 2 characters identify the server's numeric, whilst in this situation,
609 the final 3 characters define the maximum number of clients that this server
610 can hold (and more importantly, the maximum number of numerics it will
611 generate).</LI>
612
613 <LI>
614 &nbsp;The example "AA]]]" shows that this is a server with numeric 0, which
615 will generate client numerics up to 262,143.</LI>
616 </OL>
617
618 <LI>
619 This final parameter simply consists of a textual description of the server
620 prefixed by a colon. This is displayed in a clients WHOIS line, aswell
621 as in the LINKS reply.</LI>
622 </OL>
623 <A NAME="chap3.2"></A><B><FONT SIZE=+1>3.2 Network Database resyncronisation</FONT></B>
624 <P>After the connection has been established and verified, the next step
625 is to syncronise the database of client/server/channel information between
626 the two servers.
627 <BLOCKQUOTE><B>3.2.1 - SERVER Messages</B></BLOCKQUOTE>
628
629 <BLOCKQUOTE>Server details are transmitted via "SERVER" messages similar
630 to the initial introduction message, with the following format:</BLOCKQUOTE>
631
632 <BLOCKQUOTE>
633 <BLOCKQUOTE><TT><FONT COLOR="#00007F">[OWNING SERVER PREFIX] S [SERVERNAME]
634 [HOPCOUNT] [START TIME] [LINK TIME] [PROTOCOL] [NUMERIC/MAXCONN] 0 :[DESCRIPTION]</FONT></TT></BLOCKQUOTE>
635 <FONT COLOR="#000000">The syntax of this message is almost identical to
636 the originally recieved server message, with the only exception being that
637 the message is numeric prefixed, to indicate which server sent this message
638 (and also therefore, which hub this new server is linked too). There is
639 also a fixed "0" present before the Description field, this is a placeholder
640 for future use and currently unused.</FONT>
641 <P><B>3.2.2 - NICK Messages</B></BLOCKQUOTE>
642
643 <BLOCKQUOTE>Client information is transmitted via "NICK" messages, of the
644 following format:</BLOCKQUOTE>
645
646 <BLOCKQUOTE>
647 <BLOCKQUOTE>
648 <PRE><TT><FONT COLOR="#00007F">[NUMERIC PREFIX] N [NICK] [HOPCOUNT] [TIMESTAMP] [USERNAME] [HOST] &lt;+modes> [BASE64 IP] [NUMERIC] :[USERINFO]</FONT></TT></PRE>
649 </BLOCKQUOTE>
650 <FONT COLOR="#00007F">For Example:</FONT>
651 <BLOCKQUOTE><TT><FONT COLOR="#000000">1&nbsp; 2 3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
652 4 5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6&nbsp;&nbsp;&nbsp;&nbsp;
653 7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8&nbsp;&nbsp;&nbsp;&nbsp;
654 9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10&nbsp;&nbsp;&nbsp; 11</FONT></TT>
655 <BR><TT><FONT COLOR="#000000">AF N Client1 1 947957573 User userhost.net
656 +oiwg DAqAoB AFAAA :Generic Client.</FONT></TT></BLOCKQUOTE>
657 <I>Notes:</I>
658 <OL>
659 <LI>
660 The numeric of the server sending this message. (And hence, owning this
661 client).</LI>
662
663 <LI>
664 The "NICK" token.</LI>
665
666 <LI>
667 The nickname of this client, currently max 9 chars.</LI>
668
669 <LI>
670 The "Hopcount" of this client, Ie: how many servers away it is on.</LI>
671
672 <LI>
673 The epoch timestamp indicating when the user was created.</LI>
674
675 <LI>
676 The "User" part of the user@host mask.</LI>
677
678 <LI>
679 the "Host" part of the user@host mask.</LI>
680
681 <LI>
682 [<B>Optional</B>]: User modes. If present, this is always +&lt;user modes
683 for this client>.</LI>
684
685 <LI>
686 The real IP address of this client, a Base64 encoded 32bit int.</LI>
687
688 <LI>
689 This client's numeric, in SSCCC format.</LI>
690
691 <LI>
692 Free format user info line.</LI>
693
694 <BR>&nbsp;</OL>
695 </BLOCKQUOTE>
696
697 <BLOCKQUOTE><B>3.2.3 - BURST Messages</B></BLOCKQUOTE>
698
699 <BLOCKQUOTE>Channel details and membership information is synchronised
700 in one (or more) BURST messages for each channel that exists, formatted
701 as follows:</BLOCKQUOTE>
702
703 <BLOCKQUOTE>
704 <BLOCKQUOTE>
705 <PRE><TT><FONT COLOR="#00007F">[NUMERIC PREFIX] B [CHANNEL] [CREATION TIMESTAMP] &lt;+MODES> &lt;ARG1> &lt;ARG2> [MEMBER LIST] &lt;:%BANS></FONT></TT></PRE>
706 </BLOCKQUOTE>
707 </BLOCKQUOTE>
708
709 <BLOCKQUOTE>For Example:</BLOCKQUOTE>
710
711 <BLOCKQUOTE>
712 <BLOCKQUOTE>
713 <PRE>1&nbsp; 2 3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6&nbsp;&nbsp; 7&nbsp; 8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 9
714 AZ B #coder-com 949217470 +tinkl key 56 AAAAA,AAAAB,AAAAC,ABAAA,ABAAB,ABAAC,ACAAA :%*!*@*.net</PRE>
715 </BLOCKQUOTE>
716 </BLOCKQUOTE>
717
718 <BLOCKQUOTE><I>Notes:</I></BLOCKQUOTE>
719
720 <OL>
721 <LI>
722 The numeric of the server sending this message.</LI>
723
724 <LI>
725 The "BURST" token.</LI>
726
727 <LI>
728 The name of the channel to which this data belongs. Currently #Channel
729 and +Channel names can be sent in a BURST message, &amp;Channels are not
730 because by definition they are local to the server.</LI>
731
732 <LI>
733 The epoch timestamp indicating when the channel was created.</LI>
734
735 <LI>
736 [<B>Optional</B>]: Channel Modes.</LI>
737
738 <OL>
739 <LI>
740 The channel may have a number of modes set, aswell as relevant mode arguments
741 in the following 2 parameters.</LI>
742 </OL>
743
744 <LI>
745 [<B>Optional</B>]: Channel Key, this parameter is present if the channel
746 modes contain a "k" mode.</LI>
747
748 <LI>
749 [<B>Optional</B>]: Channel Limit, this parameter is present if the channel
750 modes contain a "l" mode.</LI>
751
752 <LI>
753 &nbsp;A <I>comma</I> seperated list of client numerics, with the following
754 specific formatting rules to indicate +o, +v and +ov channel members.</LI>
755
756 <OL>
757 <LI>
758 Numerics can have the following symbols appended on them; "<B>:ov</B>",
759 "<B>:v</B>" or "<B>:o</B>". These indicate that this numeric is either
760 Opped (<B>:o</B>), Voiced (<B>:v</B>) or both (<B>:ov</B>). This state
761 applies to the numeric it is attached too, and all subsequent numerics
762 until another state is encountered. <I>For Example:</I></LI>
763
764 <LI>
765 AAABA:ov, AAABB:o,AAABC,AAABD,AAABE:v,AAABZ</LI>
766
767 <BR>Here, AAABA is both opped, and voiced, AAABB, AAABC and AAABD are opped
768 leaving AAABE and AAABZ voiced.
769 <LI>
770 &nbsp;The first numeric of the member list will always contain a state
771 symbol.</LI>
772 </OL>
773
774 <LI>
775 A <I>space</I> seperated list of bans present in the channel. The start
776 of the ban stream is indicated by a ":%", everything following the ":%"
777 is the ban list.</LI>
778
779 <BR><I>For Example:</I>
780 <BR>:%*!*@*.foobar.net another!ban@*.com *!*fred@a.host.co.uk
781 <BR>Would add the following bans to the channel:
782 <P>*!*@*.foobar.net
783 <BR>another!ban@*.com
784 <BR>*!*fred@a.host.co.uk</OL>
785
786 <BLOCKQUOTE>If the length of a BURST message exceeds the maximum lenght
787 of a line (512 characters) then the remaining channel members/bans are
788 sent in subsequent BURST lines. The subsequent burst lines are <B>only</B>
789 used to add additional members to the channel, and if neccessary, channel
790 bans. There will be no "Mode" parameters present. A sample additional burst
791 line would be:</BLOCKQUOTE>
792
793 <BLOCKQUOTE>
794 <BLOCKQUOTE>
795 <PRE>AZ BURST #coder-com 949217470 ACAAB:o,ACAAD :%*!*another@*.ban.com</PRE>
796 </BLOCKQUOTE>
797 </BLOCKQUOTE>
798
799 <BLOCKQUOTE>Which adds two more opped members and a ban to the channel.</BLOCKQUOTE>
800
801 <BLOCKQUOTE><B>3.2.4 - JUPE Messages</B></BLOCKQUOTE>
802
803 <BLOCKQUOTE>Any currently unexpired JUPEs are transmitted via "JUPE"
804 messages with the following format:</BLOCKQUOTE>
805
806 <BLOCKQUOTE>
807 <BLOCKQUOTE><TT><FONT COLOR="#00007F">[NUMERIC PREFIX] JU * (+|-)[SERVER NAME]
808 [LIFETIME] [LAST MOD] :[REASON]</FONT></TT></BLOCKQUOTE>
809 </BLOCKQUOTE>
810 <BLOCKQUOTE><I>Notes:</I></BLOCKQUOTE>
811
812 <OL>
813 <LI>
814 The numeric of the server sending this message.</LI>
815
816 <LI>
817 The "JUPE" token.</LI>
818
819 <LI>
820 The target that should apply this JUPE (always "*" during bursts).</LI>
821
822 <LI>
823 The name of the server to JUPE, prefixed with a "+" if the JUPE is active,
824 or with a "-" if it is not.</LI>
825
826 <LI>
827 The remaining absolute lifetime of the JUPE, expressed in seconds.</LI>
828
829 <LI>
830 The last time the JUPE was modified.</LI>
831
832 <LI>
833 The reason the JUPE was applied.</LI>
834
835 </OL>
836
837 <A NAME="chap3.3"></A><B><FONT SIZE=+1>3.3 Summary</FONT></B>
838 <P>The following table summarises the sequence of events that occur when
839 a server connects to another server. S1 is our server, and S2 is a HUB
840 on the target network.
841 <P>S1: Sends Password.
842 <BR>S1: Sends initial SERVER message.
843 <P><I>S2 Confirms S1 has the correct credentials, and if so, proceeds.
844 If not, S1 is squit with a relevant reason.</I>
845 <P>S2: Sends Password.
846 <BR>S2: Sends initial SERVER message.
847 <P><I>S1 Confirms S2 has the correct credentials, and if so, proceeds.
848 If not, S2 is squit with a relevant reason.</I>
849 <P><B><I>The follow occur asynchronously, however they have been shown
850 seperately below for simplicity.</I></B>
851 <P>S1: Sends all the servers it is aware of as a stream of SERVER messages.
852 <BR>S1: Sends all the clients it is aware of as a stream of NICK messages.
853 <BR>S1: Sends the database of channel states on the network, as a stream
854 of BURST messages.
855 <BR>S1: Sends all the jupes it is aware of as a stream of JUPE messages.
856 <BR>S1: Sends a END_OF_BURST token (EB) to indicate it has finished sending.
857 <P>S2: Sends all the servers it is aware of as a stream of SERVER messages.
858 <BR>S2: Sends all the clients it is aware of as a stream of NICK messages.
859 <BR>S2: Sends the database of channel states on the network, as a stream
860 of BURST messages.
861 <BR>S2: Sends all the jupes it is aware of as a stream of JUPE messages.
862 <BR>S2: Sends a END_OF_BURST token (EB) to indicate it has finished sending.
863 <P>S2: Sends an EOB_ACK token (EA) to indicate it has succesfully recieved
864 the END_OF_BURST from S1
865 <BR>S1: Sends an EOB_ACK token (EA) to indicate it has succesfully recieved
866 the END_OF_BURST from S2
867 <P><I>Example Session:</I>
868 <PRE><FONT COLOR="#00007F">[WRITE]: PASS :54321
869 [WRITE]: SERVER irc.undernet.org 1 947957852 947957852 J10 AB]]] :Undernet Client Server.
870 [WRITE]: AB N MrFoo 1 947957852 ~me myhost.foobar.net +diksw DAqAoB ABAAA :Mr Foo (foo@bar.com).
871 [WRITE]: AB B #mychannel 946101324 ABAAA:o
872 [WRITE]: AB EB
873 [ READ]: PASS :54321
874 [ READ]: SERVER server1.undernet.org 1 947901540 947958150 J10 AFAD] :A Generic Server.
875 [ READ]: AF S server2.undernet.org 2 0 947957585 P10 AZAD] 0 :[192.168.10.3] A Generic Server.
876 [ READ]: AZ S server3.undernet.org 3 0 947957607 P10 AIAD] 0 :[192.168.10.5] A Generic Server.
877 [ READ]: AF N Client1 1 947957573 Ident userhost.net +oiwg DAqAoB AFAAA :Generic Client.
878 [ READ]: AZ N Client2 2 947957719 Ident userhost.net +iwg DAqAoB AZAAA :Generic Client.
879 [ READ]: AI N Client3 3 947957742 Ident userhost.net +iwg DAqAoB AIAAA :Generic Client.
880 [ READ]: AI N Client4 3 947958121 Ident userhost.net +iwg DAqAoB AIAAB :Generic Client.
881 [ READ]: AF B #foobar 947957734 +tink akey AIAAB,AIAAA:v,AZAAA:o :%*!*another@*.ban.com *!*foo@bar.net
882 [ READ]: AF B #coder-com 947957727 AIAAB,AZAAA:o
883 [ READ]: AF B #another 946101321 AFAAA
884 [ READ]: AF JU * +juped.undernet.org 3600 947958100 :Broken, please fix
885 [ READ]: AF EB
886 [WRITE]: AB EA
887 [ READ]: AF EA</FONT></PRE>
888 <FONT FACE="Arial,Helvetica"><FONT SIZE=-1><B>[</B><A HREF="#top">Back</A><B>]</B></FONT></FONT>
889 <BR>
890 <HR WIDTH="100%">
891 <BR><A NAME="chap4"></A><B><FONT SIZE=+2>4. Continuous Operation</FONT></B>
892 <P><FONT FACE="Arial,Helvetica"><FONT SIZE=-1><B>[</B><A HREF="#top">Back</A><B>]</B></FONT></FONT>
893 <BR>
894 <HR ALIGN=LEFT WIDTH=100% SIZE=2>
895 <P><A NAME="chap5"></A><B><FONT SIZE=+2>5. Programmers reference: Client/Server
896 Structures</FONT></B>
897 <P>This section provides information on the standard Client/Server structures,
898 for easy reference during development.
899 <P><I>[..Link to autogenerated struct.html..]</I>
900 <P><FONT FACE="Arial,Helvetica"><FONT SIZE=-1><B>[</B><A HREF="#top">Back</A><B>]</B></FONT></FONT>
901 <BR>
902 <HR ALIGN=LEFT WIDTH=100% SIZE=2>
903 <BR><A NAME="chap7"></A><B><FONT SIZE=+2>7. FAQ</FONT></B>
904 <P>Frequently asked questions.
905 <UL>
906 <LI>
907 Q. How..</LI>
908
909 <LI>
910 A. ...</LI>
911 </UL>
912 <FONT FACE="Arial,Helvetica"><FONT SIZE=-1><B>[</B><A HREF="#top">Back</A><B>]</B></FONT></FONT>
913 <BR>
914 <HR WIDTH="100%">
915 <P><A NAME="chap8"></A><B><FONT SIZE=+2>8. Update History</FONT></B>
916 <P>[20/01/2000]: Initial draft, structure, background info.
917 <BR>[13/02/2000]: Added initial BURST documentation.
918 <BR>[14/02/2000]: Continued BURST documentation / Begin NICK and SERVER
919 documentation.
920 <BR>[26/02/2000]: Continued chapter 5, few example fixes, added token table
921 from msg.h. --Gte.
922 <BR>[02/03/2000]: Added NICK spec. --Gte.
923 <BR>[18/03/2000]: Added JUPE spec. -Kev
924 <P><A NAME="chap8.1"></A><B><FONT SIZE=+1>8.1 TODO</FONT></B>
925 <UL>
926 <LI>
927 Finish Chapter 5.</LI>
928
929 <LI>
930 Go through examples, and ensure they are all correct.</LI>
931
932 <LI>
933 Add common function headers, with argv listings.</LI>
934
935 <LI>
936 Add description of further server&lt;>server messages, with special cases
937 and outcomes.</LI>
938
939 <LI>
940 Add FAQ Section.</LI>
941
942 <LI>
943 Any chance we could switch to ISO dates (2000-3-18)? ;) -Kev.</LI>
944 </UL>
945 <FONT FACE="Arial,Helvetica"><FONT SIZE=-1><B>[</B><A HREF="#top">Back</A><B>]</B></FONT></FONT>
946 </BODY>
947 </HTML>