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