This file is indexed.

/usr/share/GNUstep/Documentation/Developer/netclasses/IRCObject.html is in libnetclasses-dev 1.06.dfsg-7build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

    <head>
    <title>IRCObject reference</title>
  </head>
  <body>
    <font face="serif">
    <a href="index.html">Up</a>
    <br />
    <h1><a name="title$IRCObject">IRCObject reference</a></h1>
    <h3>Authors</h3>
    <dl>
      <dt><a href="http://www.aeruder.net">Andrew Ruder</a> (<a href="mailto:aeruder@ksu.edu"><code>aeruder@ksu.edu</code></a>)</dt>
      <dd>
      </dd>
    </dl>
    <p><b>Version:</b> Revision 1</p>
    <p><b>Date:</b> November 8, 2003</p>
    <p><b>Copyright:</b> (C) Andrew Ruder</p>

        <div>
      <hr width="50%" align="left" />
      <h3>Contents -</h3>
      <ol>
        <li>
          <a href="#001000000000">Software documentation for the IRCObject class</a>
        </li>
        <li>
          <a href="#002000000000">Software documentation for the IRCObject(Callbacks)
        category</a>
        </li>
        <li>
          <a href="#003000000000">Software documentation for the IRCObject(LowLevel)
        category</a>
        </li>
        <li>
          <a href="#004000000000">Software documentation for the NSString(IRCAddition)
        category</a>
        </li>
        <li>
          <a href="#005000000000">IRCObject variables</a>
        </li>
        <li>
          <a href="#006000000000">IRCObject functions</a>
        </li>
      </ol>
      <hr width="50%" align="left" />
    </div>

          <h1><a name="001000000000">
        Software documentation for the IRCObject class
      </a></h1>
    <h2><a name="class$IRCObject">IRCObject</a> : <a rel="gsdoc" href="LineObject.html#class$LineObject">LineObject</a></h2>
    <blockquote class="declared">
      <dl>
        <dt><b>Declared in:</b></dt>
        <dd>IRCObject.h</dd>
      </dl>
    </blockquote>
    <div class="desc">
      
          
    </p>
    <p>

            IRCObject handles all aspects of an IRC
            connection. In almost all cases, you will want
            to override this class and implement just the callback
            methods specified in
            <a rel="gsdoc" href="#category$IRCObject(Callbacks)">IRCObject(Callbacks)</a>
to handle everything.    </p>
    <p>
      
            
    </p>
    <p>

              A lot of arguments may not contain spaces. The general
              procedure on processing these arguments is that
              the method will cut the string off at the first space
              and use the part of the string before the space and
              fail only if that string is still invalid. Try to
              avoid passing strings with spaces as the arguments
              to the methods that warn not to.
                </p>
    <p>
      
        
    </div>
    <hr width="50%" align="left" />
    <a href="#_IRCObject_ivars">Instance Variables</a>
    <br/><br/>
    <b>Method summary</b>
    <ul>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-CTCPReplyReceived$withArgument$to$from$">-CTCPReplyReceived:withArgument:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-CTCPRequestReceived$withArgument$to$from$">-CTCPRequestReceived:withArgument:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-actionReceived$to$from$">-actionReceived:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-channelJoined$from$">-channelJoined:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-channelParted$withMessage$from$">-channelParted:withMessage:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-couldNotRegister$">-couldNotRegister:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-errorReceived$">-errorReceived:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-invitedTo$from$">-invitedTo:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-messageReceived$to$from$">-messageReceived:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-modeChanged$on$withParams$from$">-modeChanged:on:withParams:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-newNickNeededWhileRegistering">-newNickNeededWhileRegistering</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-nickChangedTo$from$">-nickChangedTo:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-noticeReceived$to$from$">-noticeReceived:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-numericCommandReceived$withParams$from$">-numericCommandReceived:withParams:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-pingReceivedWithArgument$from$">-pingReceivedWithArgument:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-pongReceivedWithArgument$from$">-pongReceivedWithArgument:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-quitIRCWithMessage$from$">-quitIRCWithMessage:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-registeredWithServer">-registeredWithServer</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-topicChangedTo$in$from$">-topicChangedTo:in:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-userKicked$outOf$for$from$">-userKicked:outOf:for:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-wallopsReceived$from$">-wallopsReceived:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(LowLevel)-lineReceived$">-lineReceived:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(LowLevel)-writeString$,...">-writeString:,...</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-areUsersOn$">-areUsersOn:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-becomeOperatorWithName$withPassword$">-becomeOperatorWithName:withPassword:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-caseInsensitiveCompare$to$">-caseInsensitiveCompare:to:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-changeNick$">-changeNick:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-connected">-connected</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-encoding">-encoding</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-encodingForTarget$">-encodingForTarget:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-errorString">-errorString</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-initWithNickname$withUserName$withRealName$withPassword$">-initWithNickname:withUserName:withRealName:withPassword:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-invite$to$">-invite:to:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-joinChannel$withPassword$">-joinChannel:withPassword:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-kick$offOf$for$">-kick:offOf:for:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-kill$withComment$">-kill:withComment:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-listChannel$onServer$">-listChannel:onServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-listWho$onlyOperators$">-listWho:onlyOperators:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-lowercasingSelector">-lowercasingSelector</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-nick">-nick</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-partChannel$withMessage$">-partChannel:withMessage:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-password">-password</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-quitWithMessage$">-quitWithMessage:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-realName">-realName</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-removeEncodingForTarget$">-removeEncodingForTarget:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestAdministratorOnServer$">-requestAdministratorOnServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestInfoOnServer$">-requestInfoOnServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestMOTDOnServer$">-requestMOTDOnServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestNamesOnChannel$">-requestNamesOnChannel:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestServerLink$from$">-requestServerLink:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestServerRehash">-requestServerRehash</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestServerRestart">-requestServerRestart</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestServerShutdown">-requestServerShutdown</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestServerStats$for$">-requestServerStats:for:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestServerToConnect$to$onPort$">-requestServerToConnect:to:onPort:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestSizeInformationFromServer$andForwardTo$">-requestSizeInformationFromServer:andForwardTo:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestTimeOnServer$">-requestTimeOnServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestTraceOnServer$">-requestTraceOnServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestUserInfoOnServer$">-requestUserInfoOnServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-requestVersionOfServer$">-requestVersionOfServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-sendAction$to$">-sendAction:to:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-sendCTCPReply$withArgument$to$">-sendCTCPReply:withArgument:to:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-sendCTCPRequest$withArgument$to$">-sendCTCPRequest:withArgument:to:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-sendMessage$to$">-sendMessage:to:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-sendNotice$to$">-sendNotice:to:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-sendPingWithArgument$">-sendPingWithArgument:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-sendPongWithArgument$">-sendPongWithArgument:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-sendWallops$">-sendWallops:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setAwayWithMessage$">-setAwayWithMessage:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setEncoding$">-setEncoding:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setEncoding$forTarget$">-setEncoding:forTarget:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setLowercasingSelector$">-setLowercasingSelector:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setMode$on$withParams$">-setMode:on:withParams:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setNick$">-setNick:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setPassword$">-setPassword:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setRealName$">-setRealName:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setTopicForChannel$to$">-setTopicForChannel:to:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-setUserName$">-setUserName:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-targetsWithEncodings">-targetsWithEncodings</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-userName">-userName</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-whois$onServer$">-whois:onServer:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject-whowas$onServer$withNumberEntries$">-whowas:onServer:withNumberEntries:</a></li>
    </ul>
    <hr width="50%" align="left" />
<div class="method">
    <h3><a name="method$IRCObject-areUsersOn$">areUsersOn:&nbsp;</a></h3>
    - (id) <b>areUsersOn:</b> (NSString*)userList;<br />
    <div class="desc">
      
            Requests information on the precense of certain
            nicknames listed in <var>userList</var> on the
            network. <var>userList</var> is a space separated
            list of users. For each user that is present, its name
            will be added to the reply through the numeric message
            <var>RPL_ISON</var>. See RFC 1459 for more
            information on the ISON message.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-becomeOperatorWithName$withPassword$">becomeOperatorWithName:&nbsp;withPassword:&nbsp;</a></h3>
    - (id) <b>becomeOperatorWithName:</b> (NSString*)aName<b> withPassword:</b> (NSString*)aPassword;<br />
    <div class="desc">
      
            This method attempts to become an IRC operator with
            name <var>aName</var> and password
            <var>aPassword</var>. Neither may contain spaces.
            This is a totally different concept than channel
            operators since it refers to operators of the
            server as a whole. Please see RFC 1459 for more
            information on the OPER command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-caseInsensitiveCompare$to$">caseInsensitiveCompare:&nbsp;to:&nbsp;</a></h3>
    - (NSComparisonResult) <b>caseInsensitiveCompare:</b> (NSString*)aString1<b> to:</b> (NSString*)aString2;<br />
    <div class="desc">
      
            Use the lowercasingSelector to compare two strings.
            Returns a NSComparisonResult (NSOrderedAscending,
            NSOrderedSame or NSOrderedDescending)
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-changeNick$">changeNick:&nbsp;</a></h3>
    - (id) <b>changeNick:</b> (NSString*)aNick;<br />
    <div class="desc">
      
            Sets the nickname to the <var>aNick</var>. This method
            is quite similar to
            <a rel="gsdoc" href="#method$IRCObject-setNick$">
              -setNick:
            </a>

            but this will also actually send the nick change
            request to the server if connected, and will only
            affect the nickname stored by the object (which is
            returned with -nick) if the the name change was
            successful or the object is not yet
            registered/connected. Please see RFC
            1459 for more information on the NICK command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-connected">connected&nbsp;</a></h3>
    - (BOOL) <b>connected</b>;<br />
    <div class="desc">
      
            Returns <code>YES</code> when the IRC object is
            fully connected and registered with the IRC server.
            Returns <code>NO</code> if the connection has not
            made or this connection has not fully registered with
            the server.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-encoding">encoding&nbsp;</a></h3>
    - (NSStringEncoding) <b>encoding</b>;<br />
    <div class="desc">
      
            Returns the encoding currently being used by the
            connection.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-encodingForTarget$">encodingForTarget:&nbsp;</a></h3>
    - (NSStringEncoding) <b>encodingForTarget:</b> (NSString*)aTarget;<br />
    <div class="desc">
      
            Return the encoding for <var>aTarget</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-errorString">errorString&nbsp;</a></h3>
    - (NSString*) <b>errorString</b>;<br />
    <div class="desc">
      
            Returns a string that describes the last error that
            happened.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-initWithNickname$withUserName$withRealName$withPassword$">initWithNickname:&nbsp;withUserName:&nbsp;withRealName:&nbsp;withPassword:&nbsp;</a></h3>
    - (id) <b>initWithNickname:</b> (NSString*)aNickname<b> withUserName:</b> (NSString*)aUser<b> withRealName:</b> (NSString*)aRealName<b> withPassword:</b> (NSString*)aPassword;<br />
This is a designated initialiser for the class.<br />
    <div class="desc">
      
            Initializes the IRCObject and retains the
            arguments for the next connection. Uses
            <a rel="gsdoc" href="#method$IRCObject-setNick$">
              -setNick:
            </a>

            ,
            <a rel="gsdoc" href="#method$IRCObject-setUserName$">
              -setUserName:
            </a>

            ,
            <a rel="gsdoc" href="#method$IRCObject-setRealName$">
              -setRealName:
            </a>

            , and
            <a rel="gsdoc" href="#method$IRCObject-setPassword$">
              -setPassword:
            </a>

            to save the arguments.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-invite$to$">invite:&nbsp;to:&nbsp;</a></h3>
    - (id) <b>invite:</b> (NSString*)aPerson<b> to:</b> (NSString*)aChannel;<br />
    <div class="desc">
      
            This message will invite <var>aPerson</var> to the
            channel specified by <var>aChannel</var>. Neither
            may contain spaces and both are required. Please refer
            to RFC 1459 concerning the INVITE command for additional
            information.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-joinChannel$withPassword$">joinChannel:&nbsp;withPassword:&nbsp;</a></h3>
    - (id) <b>joinChannel:</b> (NSString*)aChannel<b> withPassword:</b> (NSString*)aPassword;<br />
    <div class="desc">
      
            Joins the channel <var>aChannel</var> with an
            optional password of <var>aPassword</var>. Neither
            may contain spaces, and both may be comma separated for
            multiple channels/passwords. If there is one or
            more passwords, it should match the number of channels
            specified by <var>aChannel</var>. Please see RFC
            1459 for more information on the JOIN command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-kick$offOf$for$">kick:&nbsp;offOf:&nbsp;for:&nbsp;</a></h3>
    - (id) <b>kick:</b> (NSString*)aPerson<b> offOf:</b> (NSString*)aChannel<b> for:</b> (NSString*)aReason;<br />
    <div class="desc">
      
            Kicks the user <var>aPerson</var> off of the channel
            <var>aChannel</var> for the reason specified in
            <var>aReason</var>. <var>aReason</var> may contain
            spaces and is optional. If omitted the server will
            most likely supply a default message.
            <var>aPerson</var> and <var>aChannel</var> are
            required and may not contain spaces. Please see
            the KICK command for additional information in RFC
            1459.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-kill$withComment$">kill:&nbsp;withComment:&nbsp;</a></h3>
    - (id) <b>kill:</b> (NSString*)aPerson<b> withComment:</b> (NSString*)aComment;<br />
    <div class="desc">
      
            Used to kill the connection to <var>aPerson</var> with
            a possible comment <var>aComment</var>. This is often
            used by servers when duplicate nicknames are found and
            may be available to the IRC operators.
            <var>aComment</var> is optional and
            <var>aPerson</var> may not contain spaces. Please see
            RFC 1459 for additional information on the KILL
            command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-listChannel$onServer$">listChannel:&nbsp;onServer:&nbsp;</a></h3>
    - (id) <b>listChannel:</b> (NSString*)aChannel<b> onServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Lists channel information about the channel specified
            by <var>aChannel</var> on the server <var>aServer</var>.
            <var>aChannel</var> may be a comma separated list and
            may not contain spaces. <var>aServer</var> is optional.
            If <var>aChannel</var> is omitted, then all channels on
            the server will be listed. Please refer to RFC 1459 for
            additional information on the LIST command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-listWho$onlyOperators$">listWho:&nbsp;onlyOperators:&nbsp;</a></h3>
    - (id) <b>listWho:</b> (NSString*)aMask<b> onlyOperators:</b> (BOOL)operators;<br />
    <div class="desc">
      
            Requests a list of users with a matching mask
            <var>aMask</var> against their username and/or host.
            This can optionally be done just against the IRC
            <var>operators</var>. The mask <var>aMask</var> is
            optional and may not contain spaces. Please see
            RFC 1459 for more information regarding the WHO
            message.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-lowercasingSelector">lowercasingSelector&nbsp;</a></h3>
    - (SEL) <b>lowercasingSelector</b>;<br />
    <div class="desc">
      
            Return the lowercasing selector. See
            <a rel="gsdoc" href="#method$IRCObject-setLowercasingSelector$">
              -setLowercasingSelector:
            </a>

            for more information on the use of this lowercasing
            selector.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-nick">nick&nbsp;</a></h3>
    - (NSString*) <b>nick</b>;<br />
    <div class="desc">
      
            Returns the nickname that this object will use on
            connecting next time.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-partChannel$withMessage$">partChannel:&nbsp;withMessage:&nbsp;</a></h3>
    - (id) <b>partChannel:</b> (NSString*)aChannel<b> withMessage:</b> (NSString*)aMessage;<br />
    <div class="desc">
      
            Leaves the channel <var>aChannel</var> with the
            optional message <var>aMessage</var>.
            <var>aMessage</var> may contain spaces, and
            <var>aChannel</var> may not. <var>aChannel</var> may
            also be a comma separated list of channels. Please see
            RFC 1459 for more information on the PART command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-password">password&nbsp;</a></h3>
    - (NSString*) <b>password</b>;<br />
    <div class="desc">
      
            Returns the password that will be used upon the
            next connection to a IRC server.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-quitWithMessage$">quitWithMessage:&nbsp;</a></h3>
    - (id) <b>quitWithMessage:</b> (NSString*)aMessage;<br />
    <div class="desc">
      
            Quits IRC with an optional message.
            <var>aMessage</var> can have spaces. If
            <var>aMessage</var> is <code>nil</code> or
            zero-length, the server will often provide its
            own message. Please see RFC 1459 for more information
            on the QUIT command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-realName">realName&nbsp;</a></h3>
    - (NSString*) <b>realName</b>;<br />
    <div class="desc">
      
            Returns the real name that will be used upon the
            next connection.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-removeEncodingForTarget$">removeEncodingForTarget:&nbsp;</a></h3>
    - (void) <b>removeEncodingForTarget:</b> (NSString*)aTarget;<br />
    <div class="desc">
      
            Remove the encoding for <var>aTarget</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestAdministratorOnServer$">requestAdministratorOnServer:&nbsp;</a></h3>
    - (id) <b>requestAdministratorOnServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Request the name of the administrator on the
            optional server <var>aServer</var>.
            <var>aServer</var> may not contain spaces. Please see
            RFC 1459 for more information on the ADMIN command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestInfoOnServer$">requestInfoOnServer:&nbsp;</a></h3>
    - (id) <b>requestInfoOnServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Requests information on a server
            <var>aServer</var>. <var>aServer</var> is optional
            and may not contain spaces. Please see RFC 1459 for
            more information on the INFO command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestMOTDOnServer$">requestMOTDOnServer:&nbsp;</a></h3>
    - (id) <b>requestMOTDOnServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Requests the Message-Of-The-Day from server
            <var>aServer</var>. <var>aServer</var> is optional
            and may not contain spaces if present. The message of
            the day is returned through the <var>RPL_MOTD</var>
            numeric command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestNamesOnChannel$">requestNamesOnChannel:&nbsp;</a></h3>
    - (id) <b>requestNamesOnChannel:</b> (NSString*)aChannel;<br />
    <div class="desc">
      
            Requests the names on a channel
            <var>aChannel</var>. If <var>aChannel</var> is not
            specified, all users in all channels will be
            returned. The information will be returned via a
            <var>RPL_NAMREPLY</var> numeric message. See the RFC
            1459 for more information on the NAMES command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestServerLink$from$">requestServerLink:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>requestServerLink:</b> (NSString*)aLink<b> from:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Used to list servers connected to optional
            <var>aServer</var> with an optional mask
            <var>aLink</var>. Neither may contain spaces. See the
            RFC 1459 for more information on the LINKS command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestServerRehash">requestServerRehash&nbsp;</a></h3>
    - (id) <b>requestServerRehash</b>;<br />
    <div class="desc">
      
            Used to request that the current server reread its
            configuration files. Please see RFC 1459 for
            more information on the REHASH command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestServerRestart">requestServerRestart&nbsp;</a></h3>
    - (id) <b>requestServerRestart</b>;<br />
    <div class="desc">
      
            Requests a restart of a server. Please see RFC
            1459 for additional information on the RESTART
            command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestServerShutdown">requestServerShutdown&nbsp;</a></h3>
    - (id) <b>requestServerShutdown</b>;<br />
    <div class="desc">
      
            Used to request a shutdown of a server. Please see RFC
            1459 for additional information on the DIE command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestServerStats$for$">requestServerStats:&nbsp;for:&nbsp;</a></h3>
    - (id) <b>requestServerStats:</b> (NSString*)aServer<b> for:</b> (NSString*)query;<br />
    <div class="desc">
      
            Returns a series of statistics from
            <var>aServer</var>. Specific queries can be made with
            the optional <var>query</var> argument. Neither may
            contain spaces and both are optional. See RFC 1459
            for more information on the STATS message
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestServerToConnect$to$onPort$">requestServerToConnect:&nbsp;to:&nbsp;onPort:&nbsp;</a></h3>
    - (id) <b>requestServerToConnect:</b> (NSString*)aServer<b> to:</b> (NSString*)connectServer<b> onPort:</b> (NSString*)aPort;<br />
    <div class="desc">
      
            Requests that <var>aServer</var> connects to
            <var>connectServer</var> on port <var>aPort</var>.
            <var>aServer</var> and <var>aPort</var> are optional
            and none may contain spaces. See RFC 1459 for more
            information on the CONNECT command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestSizeInformationFromServer$andForwardTo$">requestSizeInformationFromServer:&nbsp;andForwardTo:&nbsp;</a></h3>
    - (id) <b>requestSizeInformationFromServer:</b> (NSString*)aServer<b> andForwardTo:</b> (NSString*)anotherServer;<br />
    <div class="desc">
      
            Requests size information from an optional
            <var>aServer</var> and optionally forwards it to
            <var>anotherServer</var>. See RFC 1459 for more
            information on the LUSERS command
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestTimeOnServer$">requestTimeOnServer:&nbsp;</a></h3>
    - (id) <b>requestTimeOnServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Requests the local time from the optional server
            <var>aServer</var>. <var>aServer</var> may not
            contain spaces. See RFC 1459 for more information
            on the TIME command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestTraceOnServer$">requestTraceOnServer:&nbsp;</a></h3>
    - (id) <b>requestTraceOnServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            This message will request the route to a specific
            server from a client. <var>aServer</var> is optional
            and may not contain spaces; please see RFC 1459 for
            more information on the TRACE command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestUserInfoOnServer$">requestUserInfoOnServer:&nbsp;</a></h3>
    - (id) <b>requestUserInfoOnServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Requests a list of users logged into
            <var>aServer</var>. <var>aServer</var> is optional
            and may contain spaces. Please see RFC 1459 for
            additional information on the USERS message.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-requestVersionOfServer$">requestVersionOfServer:&nbsp;</a></h3>
    - (id) <b>requestVersionOfServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Queries the version of optional <var>aServer</var>.
            Please see RFC 1459 for more information on the
            VERSION command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-sendAction$to$">sendAction:&nbsp;to:&nbsp;</a></h3>
    - (id) <b>sendAction:</b> (NSString*)anAction<b> to:</b> (NSString*)aReceiver;<br />
    <div class="desc">
      
            Sends an action <var>anAction</var> to the receiver
            <var>aReceiver</var>. This is similar to a message
            but will often be displayed such as: <br /> <br />
            &lt;nick&gt; &lt;anAction&gt; <br /> <br />
            and can be used effectively to display things that you
            are <em>doing</em> rather than saying.
            <var>anAction</var> may contain spaces.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-sendCTCPReply$withArgument$to$">sendCTCPReply:&nbsp;withArgument:&nbsp;to:&nbsp;</a></h3>
    - (id) <b>sendCTCPReply:</b> (NSString*)aCTCP<b> withArgument:</b> (NSString*)args<b> to:</b> (NSString*)aPerson;<br />
    <div class="desc">
      
            Sends a CTCP <var>aCTCP</var> reply to
            <var>aPerson</var> with the argument <var>args</var>.
            <var>args</var> may contain spaces and is optional
            while the rest may not. This method should be used to
            respond to a CTCP message sent by another client.
            See
            <a rel="gsdoc" href="#method$IRCObject-sendCTCPRequest$withArgument$to$">
              -sendCTCPRequest:withArgument:to:
            </a>

          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-sendCTCPRequest$withArgument$to$">sendCTCPRequest:&nbsp;withArgument:&nbsp;to:&nbsp;</a></h3>
    - (id) <b>sendCTCPRequest:</b> (NSString*)aCTCP<b> withArgument:</b> (NSString*)args<b> to:</b> (NSString*)aPerson;<br />
    <div class="desc">
      
            Sends a CTCP <var>aCTCP</var> request to
            <var>aPerson</var> with an optional argument
            <var>args</var>. <var>args</var> may contain a space
            while the rest may not. This should be used to
            request CTCP information from another client and
            never for responding. See
            <a rel="gsdoc" href="#method$IRCObject-sendCTCPReply$withArgument$to$">
              -sendCTCPReply:withArgument:to:
            </a>

          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-sendMessage$to$">sendMessage:&nbsp;to:&nbsp;</a></h3>
    - (id) <b>sendMessage:</b> (NSString*)aMessage<b> to:</b> (NSString*)aReceiver;<br />
    <div class="desc">
      
            Sends a message <var>aMessage</var> to
            <var>aReceiver</var>. <var>aReceiver</var> may be a
            nickname or a channel name. <var>aMessage</var>
            may contain spaces. This is used to carry out the basic
            communication over IRC. Please see RFC 1459
            for more information on the PRIVMSG message.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-sendNotice$to$">sendNotice:&nbsp;to:&nbsp;</a></h3>
    - (id) <b>sendNotice:</b> (NSString*)aNotice<b> to:</b> (NSString*)aReceiver;<br />
    <div class="desc">
      
            Sends a notice <var>aNotice</var> to
            <var>aReceiver</var>. <var>aReceiver</var> may not
            contain a space. This is generally not used except
            for system messages and should rarely be used by a
            regular client. Please see RFC 1459 for more
            information on the NOTICE command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-sendPingWithArgument$">sendPingWithArgument:&nbsp;</a></h3>
    - (id) <b>sendPingWithArgument:</b> (NSString*)aString;<br />
    <div class="desc">
      
            Requests a PONG message from the server. The
            argument <var>aString</var> is essential but may
            contain spaces. The server will respond immediately
            with a PONG message with the same argument. This
            commnd is rarely needed by a client, but is sent out
            often by servers to ensure connectivity of clients.
            Please see RFC 1459 for more information on the PING
            command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-sendPongWithArgument$">sendPongWithArgument:&nbsp;</a></h3>
    - (id) <b>sendPongWithArgument:</b> (NSString*)aString;<br />
    <div class="desc">
      
            Used to respond to a PING message. The argument sent
            with the PING message should be the argument specified
            by <var>aString</var>. <var>aString</var> is required
            and may contain spaces. See RFC 1459 for more
            informtion regarding the PONG command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-sendWallops$">sendWallops:&nbsp;</a></h3>
    - (id) <b>sendWallops:</b> (NSString*)aMessage;<br />
    <div class="desc">
      
            Sends a message to all operators currently online.
            The actual implementation may vary from server to
            server in regards to who can send and receive it.
            <var>aMessage</var> is the message to be sent and may
            contain spaces. Please see RFC 1459 for more
            information regarding the WALLOPS command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setAwayWithMessage$">setAwayWithMessage:&nbsp;</a></h3>
    - (id) <b>setAwayWithMessage:</b> (NSString*)aMessage;<br />
    <div class="desc">
      
            Sets status to away with the message
            <var>aMessage</var>. While away, if a user should
            send you a message, <var>aMessage</var> will be
            returned to them to explain your absence.
            <var>aMessage</var> may contain spaces. If omitted,
            the user is marked as being present. Please refer to
            the AWAY command in RFC 1459 for additional
            information.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setEncoding$">setEncoding:&nbsp;</a></h3>
    - (id) <b>setEncoding:</b> (NSStringEncoding)aEncoding;<br />
    <div class="desc">
      
            Sets the encoding that will be used for incoming as
            well as outgoing messages. <var>aEncoding</var> should
            be an 8-bit encoding for a typical IRC server. Uses the
            system default by default.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setEncoding$forTarget$">setEncoding:&nbsp;forTarget:&nbsp;</a></h3>
    - (id) <b>setEncoding:</b> (NSStringEncoding)aEncoding<b> forTarget:</b> (NSString*)aTarget;<br />
    <div class="desc">
      
            Sets the encoding that will be used for incoming as
            well as outgoing messages to a specific target.
            <var>aEncoding</var> should be an 8-bit encoding for
            a typical IRC server. Uses the encoding set with
            setEncoding: by default.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setLowercasingSelector$">setLowercasingSelector:&nbsp;</a></h3>
    - (id) <b>setLowercasingSelector:</b> (SEL)aSelector;<br />
    <div class="desc">
      
            Set the lowercasing selector. This is the selector that
            is called on a NSString to get the lowercase form. Used
            to determine if two nicknames are equivalent. Generally
            <var>aSelector</var> would be either
            @selector(lowercaseString) or
            @selector(lowercaseIRCString).
            By default, this is lowercaseIRCString but will be
            autodetected from the server if possible. It
            will be reset to lowercaseIRCString upon reconnection.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setMode$on$withParams$">setMode:&nbsp;on:&nbsp;withParams:&nbsp;</a></h3>
    - (id) <b>setMode:</b> (NSString*)aMode<b> on:</b> (NSString*)anObject<b> withParams:</b> (NSArray*)aList;<br />
    <div class="desc">
      
            Used to query or set the mode on <var>anObject</var>
            to the mode specified by <var>aMode</var>. Flags can be
            added by adding a &apos;+&apos; to the <var>aMode</var> string
            or removed by adding a &apos;-&apos; to the <var>aMode</var>
            string. These flags may optionally have arguments
            specified in <var>aList</var> and may be applied
            to the object specified by <var>anObject</var>.
            Examples:

<pre>
 aMode: @&quot;+i&quot; anObject: @&quot;#gnustep&quot; withParams: nil
   sets the channel &quot;#gnustep&quot; to invite only.
 aMode: @&quot;+o&quot; anObject: @&quot;#gnustep&quot; withParams: (@&quot;aeruder&quot;)
   makes aeruder a channel operator of #gnustep
 </pre>
      
            Many servers have differing implementations of these
            modes and may have various modes available to users.
            None of the arguments may contain spaces. Please refer
            to RFC 1459 for additional information on the MODE
            message.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setNick$">setNick:&nbsp;</a></h3>
    - (id) <b>setNick:</b> (NSString*)aNickname;<br />
    <div class="desc">
      
            Sets the nickname that this object will attempt to use
            upon a connection. Do not use this to change the
            nickname once the object is connected, this is
            only used when it is actually connecting. This method
            returns <code>nil</code> if <var>aNickname</var> is
            invalid and will set the error string accordingly.
            <var>aNickname</var> is invalid if it contains a
            space or is zero-length.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setPassword$">setPassword:&nbsp;</a></h3>
    - (id) <b>setPassword:</b> (NSString*)aPass;<br />
    <div class="desc">
      
            Sets the password that will be used upon connecting to
            the IRC server. <var>aPass</var> can be
            <code>nil</code> or zero-length, in which case no
            password shall be used. <var>aPass</var> may not
            contain a space. Will return <code>nil</code> and
            set the error string if this fails.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setRealName$">setRealName:&nbsp;</a></h3>
    - (id) <b>setRealName:</b> (NSString*)aRealName;<br />
    <div class="desc">
      
            Sets the real name that will be passed to the IRC
            server on the next connection. If
            <var>aRealName</var> is <code>nil</code> or
            zero-length, the name &quot;John Doe&quot; shall be
            used. This method will always succeed.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setTopicForChannel$to$">setTopicForChannel:&nbsp;to:&nbsp;</a></h3>
    - (id) <b>setTopicForChannel:</b> (NSString*)aChannel<b> to:</b> (NSString*)aTopic;<br />
    <div class="desc">
      
            Sets the topic for channel <var>aChannel</var> to
            <var>aTopic</var>. If the <var>aTopic</var> is
            omitted, the topic for <var>aChannel</var> will be
            returned through the <var>RPL_TOPIC</var> numeric
            message. <var>aChannel</var> may not contain
            spaces. Please refer to the TOPIC command in RFC
            1459 for more information.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-setUserName$">setUserName:&nbsp;</a></h3>
    - (id) <b>setUserName:</b> (NSString*)aUser;<br />
    <div class="desc">
      
            Sets the user name that this object will give to the
            server upon the next connection. If <var>aUser</var>
            is invalid, it will use the user name of &quot;netclasses&quot;.
            <var>aUser</var> should not contain spaces. This
            method will always succeed.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-targetsWithEncodings">targetsWithEncodings&nbsp;</a></h3>
    - (NSArray*) <b>targetsWithEncodings</b>;<br />
    <div class="desc">
      
            Return all targets with a specific encoding.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-userName">userName&nbsp;</a></h3>
    - (NSString*) <b>userName</b>;<br />
    <div class="desc">
      
            Returns the user name that will be used upon the
            next connection.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-whois$onServer$">whois:&nbsp;onServer:&nbsp;</a></h3>
    - (id) <b>whois:</b> (NSString*)aPerson<b> onServer:</b> (NSString*)aServer;<br />
    <div class="desc">
      
            Requests information on a user <var>aPerson</var>.
            <var>aPerson</var> may also be a comma separated list
            for additional users. <var>aServer</var> is optional
            and neither argument may contain spaces. Refer to RFC
            1459 for additional information on the WHOIS command.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject-whowas$onServer$withNumberEntries$">whowas:&nbsp;onServer:&nbsp;withNumberEntries:&nbsp;</a></h3>
    - (id) <b>whowas:</b> (NSString*)aPerson<b> onServer:</b> (NSString*)aServer<b> withNumberEntries:</b> (NSString*)aNumber;<br />
    <div class="desc">
      
            Requests information on a user <var>aPerson</var>
            that is no longer connected to the server
            <var>aServer</var>. A possible maximum number of
            entries <var>aNumber</var> may be displayed. All
            arguments may not contain spaces and
            <var>aServer</var> and <var>aNumber</var> are
            optional. Please refer to RFC 1459 for more
            information regarding the WHOWAS message.
          
    </div>
    <hr width="25%" align="left" />
</div>
<a name="_IRCObject_ivars"/>    <br/><hr width="50%" align="left" />
    <h2>Instance Variables for IRCObject Class</h2>
    <h3><a name="ivariable$IRCObject*connected">connected</a></h3>
    @protected BOOL <b>connected</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*defaultEncoding">defaultEncoding</a></h3>
    @protected NSStringEncoding <b>defaultEncoding</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*errorString">errorString</a></h3>
    @protected NSString* <b>errorString</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*lowercasingSelector">lowercasingSelector</a></h3>
    @protected SEL <b>lowercasingSelector</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*nick">nick</a></h3>
    @protected NSString* <b>nick</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*password">password</a></h3>
    @protected NSString* <b>password</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*realName">realName</a></h3>
    @protected NSString* <b>realName</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*targetToEncoding">targetToEncoding</a></h3>
    @protected NSMapTable* <b>targetToEncoding</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*targetToOriginalTarget">targetToOriginalTarget</a></h3>
    @protected NSMutableDictionary* <b>targetToOriginalTarget</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <h3><a name="ivariable$IRCObject*userName">userName</a></h3>
    @protected NSString* <b>userName</b>;<br />
    <div class="desc">
      
            <em>Description forthcoming.</em>
          
    </div>
    <hr width="25%" align="left" />
    <br/><hr width="50%" align="left" /><br/>

          <h1><a name="002000000000">
        Software documentation for the IRCObject(Callbacks)
        category
      </a></h1>
    <h2><a rel="gsdoc" href="#class$IRCObject">IRCObject</a>(<a name="category$IRCObject(Callbacks)">Callbacks</a>)</h2>
    <blockquote class="declared">
      <dl>
        <dt><b>Declared in:</b></dt>
        <dd>IRCObject.h</dd>
      </dl>
    </blockquote>
    <div class="desc">
      
          This category represents all the callback methods in
          IRCObject. You can override these with a subclass.
          All of them do not do anything especially important by
          default, so feel free to not call the default
          implementation. On any method ending with an
          argument like &apos;from: (NSString *)aString&apos;,
          <var>aString</var> could be in the format of
          nickname!host. Please see the documentation
          for
          <a rel="gsdoc" href="#function$ExtractIRCNick">
            ExtractIRCNick()
          </a>

          ,
          <a rel="gsdoc" href="#function$ExtractIRCHost">
            ExtractIRCHost()
          </a>

          , and
          <a rel="gsdoc" href="#function$SeparateIRCNickAndHost">
            SeparateIRCNickAndHost()
          </a>

          for more information.
        
    </div>
    <b>Method summary</b>
    <ul>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-CTCPReplyReceived$withArgument$to$from$">-CTCPReplyReceived:withArgument:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-CTCPRequestReceived$withArgument$to$from$">-CTCPRequestReceived:withArgument:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-actionReceived$to$from$">-actionReceived:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-channelJoined$from$">-channelJoined:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-channelParted$withMessage$from$">-channelParted:withMessage:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-couldNotRegister$">-couldNotRegister:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-errorReceived$">-errorReceived:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-invitedTo$from$">-invitedTo:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-messageReceived$to$from$">-messageReceived:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-modeChanged$on$withParams$from$">-modeChanged:on:withParams:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-newNickNeededWhileRegistering">-newNickNeededWhileRegistering</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-nickChangedTo$from$">-nickChangedTo:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-noticeReceived$to$from$">-noticeReceived:to:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-numericCommandReceived$withParams$from$">-numericCommandReceived:withParams:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-pingReceivedWithArgument$from$">-pingReceivedWithArgument:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-pongReceivedWithArgument$from$">-pongReceivedWithArgument:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-quitIRCWithMessage$from$">-quitIRCWithMessage:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-registeredWithServer">-registeredWithServer</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-topicChangedTo$in$from$">-topicChangedTo:in:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-userKicked$outOf$for$from$">-userKicked:outOf:for:from:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(Callbacks)-wallopsReceived$from$">-wallopsReceived:from:</a></li>
    </ul>
    <hr width="50%" align="left" />
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-CTCPReplyReceived$withArgument$to$from$">CTCPReplyReceived:&nbsp;withArgument:&nbsp;to:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>CTCPReplyReceived:</b> (NSString*)aCTCP<b> withArgument:</b> (NSString*)anArgument<b> to:</b> (NSString*)aReceiver<b> from:</b> (NSString*)aPerson;<br />
    <div class="desc">
      
            Called when a CTCP reply has been received. The CTCP
            reply type is stored in <var>aCTCP</var> with its
            argument in <var>anArgument</var>. The actual
            location that the CTCP reply was sent is stored in
            <var>aReceiver</var> and the person who sent it is
            stored in <var>aPerson</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-CTCPRequestReceived$withArgument$to$from$">CTCPRequestReceived:&nbsp;withArgument:&nbsp;to:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>CTCPRequestReceived:</b> (NSString*)aCTCP<b> withArgument:</b> (NSString*)anArgument<b> to:</b> (NSString*)aReceiver<b> from:</b> (NSString*)aPerson;<br />
    <div class="desc">
      
            Called when a CTCP request has been received. The
            CTCP request type is stored in <var>aCTCP</var> (could
            be such things as DCC, PING, VERSION, etc.) and the
            argument is stored in <var>anArgument</var>. The
            actual location that the CTCP request is sent is
            stored in <var>aReceiver</var> and the person who
            sent it is stored in <var>aPerson</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-actionReceived$to$from$">actionReceived:&nbsp;to:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>actionReceived:</b> (NSString*)anAction<b> to:</b> (NSString*)aReceiver<b> from:</b> (NSString*)aSender;<br />
    <div class="desc">
      
            Called when an action has been received. The action
            is stored in <var>anAction</var> and the sender is
            stored in <var>aSender</var>. The person or channel
            that the action is addressed to is stored in
            <var>aReceiver</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-channelJoined$from$">channelJoined:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>channelJoined:</b> (NSString*)aChannel<b> from:</b> (NSString*)aJoiner;<br />
    <div class="desc">
      
            Called when someone joins a channel. The channel is
            stored in <var>aChannel</var> and the person who
            joined is stored in <var>aJoiner</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-channelParted$withMessage$from$">channelParted:&nbsp;withMessage:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>channelParted:</b> (NSString*)aChannel<b> withMessage:</b> (NSString*)aMessage<b> from:</b> (NSString*)aParter;<br />
    <div class="desc">
      
            Called when someone leaves a channel. The channel is
            stored in <var>aChannel</var> and the person who
            left is stored in <var>aParter</var>. The parting
            message will be stored in <var>aMessage</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-couldNotRegister$">couldNotRegister:&nbsp;</a></h3>
    - (id) <b>couldNotRegister:</b> (NSString*)aReason;<br />
    <div class="desc">
      
            This method will be called if a connection cannot
            register for whatever reason. This reason will be
            outlined in <var>aReason</var>, but the best way
            to track the reason is to watch the numeric commands
            being received in the
            <a rel="gsdoc" href="#method$IRCObject(Callbacks)-numericCommandReceived$withParams$from$">-numericCommandReceived:withParams:from:</a>
 method.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-errorReceived$">errorReceived:&nbsp;</a></h3>
    - (id) <b>errorReceived:</b> (NSString*)anError;<br />
    <div class="desc">
      
            Called when an IRC error has occurred. This is a
            message sent by the server and its argument is
            stored in <var>anError</var>. Typically you will be
            disconnected after receiving one of these.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-invitedTo$from$">invitedTo:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>invitedTo:</b> (NSString*)aChannel<b> from:</b> (NSString*)anInviter;<br />
    <div class="desc">
      
            Called when the client has been invited to another
            channel <var>aChannel</var> by <var>anInviter</var>
            .
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-messageReceived$to$from$">messageReceived:&nbsp;to:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>messageReceived:</b> (NSString*)aMessage<b> to:</b> (NSString*)aReceiver<b> from:</b> (NSString*)aSender;<br />
    <div class="desc">
      
            Called when a message <var>aMessage</var> is
            received from <var>aSender</var>. The person or
            channel that the message is addressed to is stored
            in <var>aReceiver</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-modeChanged$on$withParams$from$">modeChanged:&nbsp;on:&nbsp;withParams:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>modeChanged:</b> (NSString*)aMode<b> on:</b> (NSString*)anObject<b> withParams:</b> (NSArray*)paramList<b> from:</b> (NSString*)aPerson;<br />
    <div class="desc">
      
            Called when the mode has been changed on
            <var>anObject</var>. The actual mode change is stored
            in <var>aMode</var> and the parameters are stored in
            <var>paramList</var>. The person who changed the mode
            is stored in <var>aPerson</var>. Consult RFC 1459 for
            further information.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-newNickNeededWhileRegistering">newNickNeededWhileRegistering&nbsp;</a></h3>
    - (id) <b>newNickNeededWhileRegistering</b>;<br />
    <div class="desc">
      
            Called when a new nickname was needed while
            registering because the other one was either
            invalid or already taken. Without overriding this,
            this method will simply try adding a underscore onto
            it until it gets in. This method can be overridden to do
            other nickname-changing schemes. The new nickname
            should be directly set with
            <a rel="gsdoc" href="#method$IRCObject-changeNick$">
              -changeNick:
            </a>

          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-nickChangedTo$from$">nickChangedTo:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>nickChangedTo:</b> (NSString*)newName<b> from:</b> (NSString*)aPerson;<br />
    <div class="desc">
      
            Called when someone changes his/her nickname. The
            new nickname is stored in <var>newName</var> and the
            old name will be stored in <var>aPerson</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-noticeReceived$to$from$">noticeReceived:&nbsp;to:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>noticeReceived:</b> (NSString*)aNotice<b> to:</b> (NSString*)aReceiver<b> from:</b> (NSString*)aSender;<br />
    <div class="desc">
      
            Called when a notice <var>aNotice</var> is received
            from <var>aSender</var>. The person or channel that
            the notice is addressed to is stored in
            <var>aReceiver</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-numericCommandReceived$withParams$from$">numericCommandReceived:&nbsp;withParams:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>numericCommandReceived:</b> (NSString*)aCommand<b> withParams:</b> (NSArray*)paramList<b> from:</b> (NSString*)aSender;<br />
    <div class="desc">
      
            Called when a numeric command has been received.
            These are 3 digit numerical messages stored in
            <var>aCommand</var> with a number of parameters
            stored in <var>paramList</var>. The sender, almost
            always the server, is stored in <var>aSender</var>.
            These are often used for replies to requests such as
            user lists and channel lists and other times they are
            used for errors.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-pingReceivedWithArgument$from$">pingReceivedWithArgument:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>pingReceivedWithArgument:</b> (NSString*)anArgument<b> from:</b> (NSString*)aSender;<br />
    <div class="desc">
      
            Called when a ping is received. These pings are
            generally sent by the server. The correct method
            of handling these would be to respond to them with
            <a rel="gsdoc" href="#method$IRCObject-sendPongWithArgument$">
              -sendPongWithArgument:
            </a>

            using <var>anArgument</var> as the argument. The
            server that sent the ping is stored in
            <var>aSender</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-pongReceivedWithArgument$from$">pongReceivedWithArgument:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>pongReceivedWithArgument:</b> (NSString*)anArgument<b> from:</b> (NSString*)aSender;<br />
    <div class="desc">
      
            Called when a pong is received. These are generally
            in answer to a ping sent with
            <a rel="gsdoc" href="#method$IRCObject-sendPingWithArgument$">
              -sendPingWithArgument:
            </a>

            The argument <var>anArgument</var> is generally the
            same as the argument sent with the ping.
            <var>aSender</var> is the server that sent out the
            pong.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-quitIRCWithMessage$from$">quitIRCWithMessage:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>quitIRCWithMessage:</b> (NSString*)aMessage<b> from:</b> (NSString*)aQuitter;<br />
    <div class="desc">
      
            Called when someone quits IRC. Their parting message
            will be stored in <var>aMessage</var> and the person
            who quit will be stored in <var>aQuitter</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-registeredWithServer">registeredWithServer&nbsp;</a></h3>
    - (id) <b>registeredWithServer</b>;<br />
    <div class="desc">
      
            This method will be called when the connection is
            fully registered with the server. At this point it is
            safe to start joining channels and carrying out other
            typical IRC functions.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-topicChangedTo$in$from$">topicChangedTo:&nbsp;in:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>topicChangedTo:</b> (NSString*)aTopic<b> in:</b> (NSString*)aChannel<b> from:</b> (NSString*)aPerson;<br />
    <div class="desc">
      
            Called when the topic is changed in a channel
            <var>aChannel</var> to <var>aTopic</var> by
            <var>aPerson</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-userKicked$outOf$for$from$">userKicked:&nbsp;outOf:&nbsp;for:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>userKicked:</b> (NSString*)aPerson<b> outOf:</b> (NSString*)aChannel<b> for:</b> (NSString*)aReason<b> from:</b> (NSString*)aKicker;<br />
    <div class="desc">
      
            Called when a user has been kicked out of a channel.
            The person&apos;s nickname is stored in <var>aPerson</var>
            and the channel he/she was kicked out of is in
            <var>aChannel</var>. <var>aReason</var> is the
            kicker-supplied reason for the removal.
            <var>aKicker</var> is the person who did the kicking.
            This will not be accompanied by a
            <a rel="gsdoc" href="#method$IRCObject(Callbacks)-channelParted$withMessage$from$">
              -channelParted:withMessage:from:
            </a>

            message, so it is safe to assume they are no
            longer part of the channel after receiving this
            method.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(Callbacks)-wallopsReceived$from$">wallopsReceived:&nbsp;from:&nbsp;</a></h3>
    - (id) <b>wallopsReceived:</b> (NSString*)aMessage<b> from:</b> (NSString*)aSender;<br />
    <div class="desc">
      
            Called when a Wallops has been received. The message
            is stored in <var>aMessage</var> and the person who sent
            it is stored in <var>aSender</var>.
          
    </div>
    <hr width="25%" align="left" />
</div>

          <h1><a name="003000000000">
        Software documentation for the IRCObject(LowLevel)
        category
      </a></h1>
    <h2><a rel="gsdoc" href="#class$IRCObject">IRCObject</a>(<a name="category$IRCObject(LowLevel)">LowLevel</a>)</h2>
    <blockquote class="declared">
      <dl>
        <dt><b>Declared in:</b></dt>
        <dd>IRCObject.h</dd>
      </dl>
    </blockquote>
    <div class="desc">
      
          This is the lowlevel interface to IRCObject. One method
          is a callback for when the object receives a raw message
          from the connection, the other is a method used to write
          raw messages across the connection
        
    </div>
    <b>Method summary</b>
    <ul>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(LowLevel)-lineReceived$">-lineReceived:</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$IRCObject(LowLevel)-writeString$,...">-writeString:,...</a></li>
    </ul>
    <hr width="50%" align="left" />
<div class="method">
    <h3><a name="method$IRCObject(LowLevel)-lineReceived$">lineReceived:&nbsp;</a></h3>
    - (id) <b>lineReceived:</b> (NSData*)aLine;<br />
    <div class="desc">
      
            Handles an incoming line of text from the IRC
            server by parsing it and doing the appropriate
            actions as well as calling any needed callbacks.
            See
            <a rel="gsdoc" href="LineObject.html#method$LineObject-lineReceived$">
              [LineObject -lineReceived:]
            </a>

            for more information.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$IRCObject(LowLevel)-writeString$,...">writeString:&nbsp;,...</a></h3>
    - (id) <b>writeString:</b> (NSString*)format<b>,...</b>;<br />
    <div class="desc">
      
            Writes a formatted string to the connection. This
            string will not pass through any of the callbacks.
          
    </div>
    <hr width="25%" align="left" />
</div>

          <h1><a name="004000000000">
        Software documentation for the NSString(IRCAddition)
        category
      </a></h1>
    <h2>NSString(<a name="category$NSString(IRCAddition)">IRCAddition</a>)</h2>
    <blockquote class="declared">
      <dl>
        <dt><b>Declared in:</b></dt>
        <dd>IRCObject.h</dd>
      </dl>
    </blockquote>
    <div class="desc">
      
          Additions of NSString that are used to upper/lower
          case strings taking into account that on many servers
          {}|^ are lowercase forms of []\~. Try not to depend on
          this fact, some servers nowadays are drifting away from
          this idea and will treat them as different characters
          entirely.
        
    </div>
    <b>Method summary</b>
    <ul>
      <li><a rel="gsdoc" href="IRCObject.html#method$NSString(IRCAddition)-lowercaseIRCString">-lowercaseIRCString</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$NSString(IRCAddition)-lowercaseStrictRFC1459IRCString">-lowercaseStrictRFC1459IRCString</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$NSString(IRCAddition)-uppercaseIRCString">-uppercaseIRCString</a></li>
      <li><a rel="gsdoc" href="IRCObject.html#method$NSString(IRCAddition)-uppercaseStrictRFC1459IRCString">-uppercaseStrictRFC1459IRCString</a></li>
    </ul>
    <hr width="50%" align="left" />
<div class="method">
    <h3><a name="method$NSString(IRCAddition)-lowercaseIRCString">lowercaseIRCString&nbsp;</a></h3>
    - (NSString*) <b>lowercaseIRCString</b>;<br />
    <div class="desc">
      
            Returns a lowercased string (and converts any of
            []\~ characters found to {}|^ respectively).
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$NSString(IRCAddition)-lowercaseStrictRFC1459IRCString">lowercaseStrictRFC1459IRCString&nbsp;</a></h3>
    - (NSString*) <b>lowercaseStrictRFC1459IRCString</b>;<br />
    <div class="desc">
      
            Returns a lowercased string (and converts any of
            []\ characters found to {}| respectively). The original
            RFC 1459 forgot to include these and thus this method
            is included.
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$NSString(IRCAddition)-uppercaseIRCString">uppercaseIRCString&nbsp;</a></h3>
    - (NSString*) <b>uppercaseIRCString</b>;<br />
    <div class="desc">
      
            Returns an uppercased string (and converts any of
            {}|^ characters found to []\~ respectively).
          
    </div>
    <hr width="25%" align="left" />
</div>
<div class="method">
    <h3><a name="method$NSString(IRCAddition)-uppercaseStrictRFC1459IRCString">uppercaseStrictRFC1459IRCString&nbsp;</a></h3>
    - (NSString*) <b>uppercaseStrictRFC1459IRCString</b>;<br />
    <div class="desc">
      
            Returns a uppercased string (and converts any of
            {}| characters found to []\ respectively). The original
            RFC 1459 forgot to include these and thus this method
            is included.
          
    </div>
    <hr width="25%" align="left" />
</div>

          <h1><a name="005000000000">IRCObject variables</a></h1>
    <p>
    </p>
    <h3><a name="variable$ERR_ALREADYREGISTRED">ERR_ALREADYREGISTRED</a></h3>
    NSString* ERR_ALREADYREGISTRED;<br />
    <div class="desc">
      
          462 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_BADCHANMASK">ERR_BADCHANMASK</a></h3>
    NSString* ERR_BADCHANMASK;<br />
    <div class="desc">
      
          476 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_BADCHANNELKEY">ERR_BADCHANNELKEY</a></h3>
    NSString* ERR_BADCHANNELKEY;<br />
    <div class="desc">
      
          475 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_BADMASK">ERR_BADMASK</a></h3>
    NSString* ERR_BADMASK;<br />
    <div class="desc">
      
          415 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_BANLISTFULL">ERR_BANLISTFULL</a></h3>
    NSString* ERR_BANLISTFULL;<br />
    <div class="desc">
      
          478 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_BANNEDFROMCHAN">ERR_BANNEDFROMCHAN</a></h3>
    NSString* ERR_BANNEDFROMCHAN;<br />
    <div class="desc">
      
          474 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_CANNOTSENDTOCHAN">ERR_CANNOTSENDTOCHAN</a></h3>
    NSString* ERR_CANNOTSENDTOCHAN;<br />
    <div class="desc">
      
          404 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_CANTKILLSERVER">ERR_CANTKILLSERVER</a></h3>
    NSString* ERR_CANTKILLSERVER;<br />
    <div class="desc">
      
          483 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_CHANNELISFULL">ERR_CHANNELISFULL</a></h3>
    NSString* ERR_CHANNELISFULL;<br />
    <div class="desc">
      
          471 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_CHANOPRIVSNEEDED">ERR_CHANOPRIVSNEEDED</a></h3>
    NSString* ERR_CHANOPRIVSNEEDED;<br />
    <div class="desc">
      
          482 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_ERRONEUSNICKNAME">ERR_ERRONEUSNICKNAME</a></h3>
    NSString* ERR_ERRONEUSNICKNAME;<br />
    <div class="desc">
      
          432 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_FILEERROR">ERR_FILEERROR</a></h3>
    NSString* ERR_FILEERROR;<br />
    <div class="desc">
      
          424 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_INVITEONLYCHAN">ERR_INVITEONLYCHAN</a></h3>
    NSString* ERR_INVITEONLYCHAN;<br />
    <div class="desc">
      
          473 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_KEYSET">ERR_KEYSET</a></h3>
    NSString* ERR_KEYSET;<br />
    <div class="desc">
      
          467 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NEEDMOREPARAMS">ERR_NEEDMOREPARAMS</a></h3>
    NSString* ERR_NEEDMOREPARAMS;<br />
    <div class="desc">
      
          461 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NICKCOLLISION">ERR_NICKCOLLISION</a></h3>
    NSString* ERR_NICKCOLLISION;<br />
    <div class="desc">
      
          436 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NICKNAMEINUSE">ERR_NICKNAMEINUSE</a></h3>
    NSString* ERR_NICKNAMEINUSE;<br />
    <div class="desc">
      
          433 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOADMININFO">ERR_NOADMININFO</a></h3>
    NSString* ERR_NOADMININFO;<br />
    <div class="desc">
      
          423 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOCHANMODES">ERR_NOCHANMODES</a></h3>
    NSString* ERR_NOCHANMODES;<br />
    <div class="desc">
      
          477 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOLOGIN">ERR_NOLOGIN</a></h3>
    NSString* ERR_NOLOGIN;<br />
    <div class="desc">
      
          444 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOMOTD">ERR_NOMOTD</a></h3>
    NSString* ERR_NOMOTD;<br />
    <div class="desc">
      
          422 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NONICKNAMEGIVEN">ERR_NONICKNAMEGIVEN</a></h3>
    NSString* ERR_NONICKNAMEGIVEN;<br />
    <div class="desc">
      
          431 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOOPERHOST">ERR_NOOPERHOST</a></h3>
    NSString* ERR_NOOPERHOST;<br />
    <div class="desc">
      
          491 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOORIGIN">ERR_NOORIGIN</a></h3>
    NSString* ERR_NOORIGIN;<br />
    <div class="desc">
      
          409 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOPERMFORHOST">ERR_NOPERMFORHOST</a></h3>
    NSString* ERR_NOPERMFORHOST;<br />
    <div class="desc">
      
          463 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOPRIVILEGES">ERR_NOPRIVILEGES</a></h3>
    NSString* ERR_NOPRIVILEGES;<br />
    <div class="desc">
      
          481 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NORECIPIENT">ERR_NORECIPIENT</a></h3>
    NSString* ERR_NORECIPIENT;<br />
    <div class="desc">
      
          411 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOSERVICEHOST">ERR_NOSERVICEHOST</a></h3>
    NSString* ERR_NOSERVICEHOST;<br />
    <div class="desc">
      
          492 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOSUCHCHANNEL">ERR_NOSUCHCHANNEL</a></h3>
    NSString* ERR_NOSUCHCHANNEL;<br />
    <div class="desc">
      
          403 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOSUCHNICK">ERR_NOSUCHNICK</a></h3>
    NSString* ERR_NOSUCHNICK;<br />
    <div class="desc">
      
          401 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOSUCHSERVER">ERR_NOSUCHSERVER</a></h3>
    NSString* ERR_NOSUCHSERVER;<br />
    <div class="desc">
      
          402 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOSUCHSERVICE">ERR_NOSUCHSERVICE</a></h3>
    NSString* ERR_NOSUCHSERVICE;<br />
    <div class="desc">
      
          408 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOTEXTTOSEND">ERR_NOTEXTTOSEND</a></h3>
    NSString* ERR_NOTEXTTOSEND;<br />
    <div class="desc">
      
          412 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOTONCHANNEL">ERR_NOTONCHANNEL</a></h3>
    NSString* ERR_NOTONCHANNEL;<br />
    <div class="desc">
      
          442 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOTOPLEVEL">ERR_NOTOPLEVEL</a></h3>
    NSString* ERR_NOTOPLEVEL;<br />
    <div class="desc">
      
          413 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_NOTREGISTERED">ERR_NOTREGISTERED</a></h3>
    NSString* ERR_NOTREGISTERED;<br />
    <div class="desc">
      
          451 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_PASSWDMISMATCH">ERR_PASSWDMISMATCH</a></h3>
    NSString* ERR_PASSWDMISMATCH;<br />
    <div class="desc">
      
          464 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_RESTRICTED">ERR_RESTRICTED</a></h3>
    NSString* ERR_RESTRICTED;<br />
    <div class="desc">
      
          484 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_SUMMONDISABLED">ERR_SUMMONDISABLED</a></h3>
    NSString* ERR_SUMMONDISABLED;<br />
    <div class="desc">
      
          445 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_TOOMANYCHANNELS">ERR_TOOMANYCHANNELS</a></h3>
    NSString* ERR_TOOMANYCHANNELS;<br />
    <div class="desc">
      
          405 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_TOOMANYTARGETS">ERR_TOOMANYTARGETS</a></h3>
    NSString* ERR_TOOMANYTARGETS;<br />
    <div class="desc">
      
          407 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_UMODEUNKNOWNFLAG">ERR_UMODEUNKNOWNFLAG</a></h3>
    NSString* ERR_UMODEUNKNOWNFLAG;<br />
    <div class="desc">
      
          501 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_UNAVAILRESOURCE">ERR_UNAVAILRESOURCE</a></h3>
    NSString* ERR_UNAVAILRESOURCE;<br />
    <div class="desc">
      
          437 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_UNIQOPPRIVSNEEDED">ERR_UNIQOPPRIVSNEEDED</a></h3>
    NSString* ERR_UNIQOPPRIVSNEEDED;<br />
    <div class="desc">
      
          485 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_UNKNOWNCOMMAND">ERR_UNKNOWNCOMMAND</a></h3>
    NSString* ERR_UNKNOWNCOMMAND;<br />
    <div class="desc">
      
          421 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_UNKNOWNMODE">ERR_UNKNOWNMODE</a></h3>
    NSString* ERR_UNKNOWNMODE;<br />
    <div class="desc">
      
          472 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_USERNOTINCHANNEL">ERR_USERNOTINCHANNEL</a></h3>
    NSString* ERR_USERNOTINCHANNEL;<br />
    <div class="desc">
      
          441 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_USERONCHANNEL">ERR_USERONCHANNEL</a></h3>
    NSString* ERR_USERONCHANNEL;<br />
    <div class="desc">
      
          443 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_USERSDISABLED">ERR_USERSDISABLED</a></h3>
    NSString* ERR_USERSDISABLED;<br />
    <div class="desc">
      
          446 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_USERSDONTMATCH">ERR_USERSDONTMATCH</a></h3>
    NSString* ERR_USERSDONTMATCH;<br />
    <div class="desc">
      
          502 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_WASNOSUCHNICK">ERR_WASNOSUCHNICK</a></h3>
    NSString* ERR_WASNOSUCHNICK;<br />
    <div class="desc">
      
          406 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_WILDTOPLEVEL">ERR_WILDTOPLEVEL</a></h3>
    NSString* ERR_WILDTOPLEVEL;<br />
    <div class="desc">
      
          414 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_YOUREBANNEDCREEP">ERR_YOUREBANNEDCREEP</a></h3>
    NSString* ERR_YOUREBANNEDCREEP;<br />
    <div class="desc">
      
          465 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$ERR_YOUWILLBEBANNED">ERR_YOUWILLBEBANNED</a></h3>
    NSString* ERR_YOUWILLBEBANNED;<br />
    <div class="desc">
      
          466 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$IRCException">IRCException</a></h3>
    NSString* IRCException;<br />
    <div class="desc">
      
          <em>Description forthcoming.</em>
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ADMINEMAIL">RPL_ADMINEMAIL</a></h3>
    NSString* RPL_ADMINEMAIL;<br />
    <div class="desc">
      
          259 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ADMINLOC1">RPL_ADMINLOC1</a></h3>
    NSString* RPL_ADMINLOC1;<br />
    <div class="desc">
      
          257 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ADMINLOC2">RPL_ADMINLOC2</a></h3>
    NSString* RPL_ADMINLOC2;<br />
    <div class="desc">
      
          258 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ADMINME">RPL_ADMINME</a></h3>
    NSString* RPL_ADMINME;<br />
    <div class="desc">
      
          256 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_AWAY">RPL_AWAY</a></h3>
    NSString* RPL_AWAY;<br />
    <div class="desc">
      
          301 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_BANLIST">RPL_BANLIST</a></h3>
    NSString* RPL_BANLIST;<br />
    <div class="desc">
      
          367 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_BOUNCE">RPL_BOUNCE</a></h3>
    NSString* RPL_BOUNCE;<br />
    <div class="desc">
      
          005 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_CHANNELMODEIS">RPL_CHANNELMODEIS</a></h3>
    NSString* RPL_CHANNELMODEIS;<br />
    <div class="desc">
      
          324 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_CLOSEEND">RPL_CLOSEEND</a></h3>
    NSString* RPL_CLOSEEND;<br />
    <div class="desc">
      
          363 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_CLOSING">RPL_CLOSING</a></h3>
    NSString* RPL_CLOSING;<br />
    <div class="desc">
      
          262 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_CREATED">RPL_CREATED</a></h3>
    NSString* RPL_CREATED;<br />
    <div class="desc">
      
          003 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFBANLIST">RPL_ENDOFBANLIST</a></h3>
    NSString* RPL_ENDOFBANLIST;<br />
    <div class="desc">
      
          368 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFEXCEPTLIST">RPL_ENDOFEXCEPTLIST</a></h3>
    NSString* RPL_ENDOFEXCEPTLIST;<br />
    <div class="desc">
      
          349 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFINFO">RPL_ENDOFINFO</a></h3>
    NSString* RPL_ENDOFINFO;<br />
    <div class="desc">
      
          374 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFINVITELIST">RPL_ENDOFINVITELIST</a></h3>
    NSString* RPL_ENDOFINVITELIST;<br />
    <div class="desc">
      
          347 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFLINKS">RPL_ENDOFLINKS</a></h3>
    NSString* RPL_ENDOFLINKS;<br />
    <div class="desc">
      
          365 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFMOTD">RPL_ENDOFMOTD</a></h3>
    NSString* RPL_ENDOFMOTD;<br />
    <div class="desc">
      
          376 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFNAMES">RPL_ENDOFNAMES</a></h3>
    NSString* RPL_ENDOFNAMES;<br />
    <div class="desc">
      
          366 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFSERVICES">RPL_ENDOFSERVICES</a></h3>
    NSString* RPL_ENDOFSERVICES;<br />
    <div class="desc">
      
          232 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFSTATS">RPL_ENDOFSTATS</a></h3>
    NSString* RPL_ENDOFSTATS;<br />
    <div class="desc">
      
          219 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFUSERS">RPL_ENDOFUSERS</a></h3>
    NSString* RPL_ENDOFUSERS;<br />
    <div class="desc">
      
          394 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFWHO">RPL_ENDOFWHO</a></h3>
    NSString* RPL_ENDOFWHO;<br />
    <div class="desc">
      
          315 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFWHOIS">RPL_ENDOFWHOIS</a></h3>
    NSString* RPL_ENDOFWHOIS;<br />
    <div class="desc">
      
          318 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ENDOFWHOWAS">RPL_ENDOFWHOWAS</a></h3>
    NSString* RPL_ENDOFWHOWAS;<br />
    <div class="desc">
      
          369 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_EXCEPTLIST">RPL_EXCEPTLIST</a></h3>
    NSString* RPL_EXCEPTLIST;<br />
    <div class="desc">
      
          348 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_INFO">RPL_INFO</a></h3>
    NSString* RPL_INFO;<br />
    <div class="desc">
      
          371 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_INFOSTART">RPL_INFOSTART</a></h3>
    NSString* RPL_INFOSTART;<br />
    <div class="desc">
      
          373 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_INVITELIST">RPL_INVITELIST</a></h3>
    NSString* RPL_INVITELIST;<br />
    <div class="desc">
      
          346 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_INVITING">RPL_INVITING</a></h3>
    NSString* RPL_INVITING;<br />
    <div class="desc">
      
          341 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ISON">RPL_ISON</a></h3>
    NSString* RPL_ISON;<br />
    <div class="desc">
      
          303 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_ISUPPORT">RPL_ISUPPORT</a></h3>
    NSString* RPL_ISUPPORT;<br />
    <div class="desc">
      
          005 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_KILLDONE">RPL_KILLDONE</a></h3>
    NSString* RPL_KILLDONE;<br />
    <div class="desc">
      
          361 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LINKS">RPL_LINKS</a></h3>
    NSString* RPL_LINKS;<br />
    <div class="desc">
      
          364 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LIST">RPL_LIST</a></h3>
    NSString* RPL_LIST;<br />
    <div class="desc">
      
          322 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LISTEND">RPL_LISTEND</a></h3>
    NSString* RPL_LISTEND;<br />
    <div class="desc">
      
          323 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LISTSTART">RPL_LISTSTART</a></h3>
    NSString* RPL_LISTSTART;<br />
    <div class="desc">
      
          321 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LUSERCHANNELS">RPL_LUSERCHANNELS</a></h3>
    NSString* RPL_LUSERCHANNELS;<br />
    <div class="desc">
      
          254 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LUSERCLIENT">RPL_LUSERCLIENT</a></h3>
    NSString* RPL_LUSERCLIENT;<br />
    <div class="desc">
      
          251 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LUSERME">RPL_LUSERME</a></h3>
    NSString* RPL_LUSERME;<br />
    <div class="desc">
      
          255 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LUSEROP">RPL_LUSEROP</a></h3>
    NSString* RPL_LUSEROP;<br />
    <div class="desc">
      
          252 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_LUSERUNKNOWN">RPL_LUSERUNKNOWN</a></h3>
    NSString* RPL_LUSERUNKNOWN;<br />
    <div class="desc">
      
          253 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_MOTD">RPL_MOTD</a></h3>
    NSString* RPL_MOTD;<br />
    <div class="desc">
      
          372 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_MOTDSTART">RPL_MOTDSTART</a></h3>
    NSString* RPL_MOTDSTART;<br />
    <div class="desc">
      
          375 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_MYINFO">RPL_MYINFO</a></h3>
    NSString* RPL_MYINFO;<br />
    <div class="desc">
      
          004 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_MYPORTIS">RPL_MYPORTIS</a></h3>
    NSString* RPL_MYPORTIS;<br />
    <div class="desc">
      
          384 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_NAMREPLY">RPL_NAMREPLY</a></h3>
    NSString* RPL_NAMREPLY;<br />
    <div class="desc">
      
          353 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_NONE">RPL_NONE</a></h3>
    NSString* RPL_NONE;<br />
    <div class="desc">
      
          300 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_NOTOPIC">RPL_NOTOPIC</a></h3>
    NSString* RPL_NOTOPIC;<br />
    <div class="desc">
      
          331 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_NOUSERS">RPL_NOUSERS</a></h3>
    NSString* RPL_NOUSERS;<br />
    <div class="desc">
      
          395 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_NOWAWAY">RPL_NOWAWAY</a></h3>
    NSString* RPL_NOWAWAY;<br />
    <div class="desc">
      
          306 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_REHASHING">RPL_REHASHING</a></h3>
    NSString* RPL_REHASHING;<br />
    <div class="desc">
      
          382 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_SERVICE">RPL_SERVICE</a></h3>
    NSString* RPL_SERVICE;<br />
    <div class="desc">
      
          233 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_SERVICEINFO">RPL_SERVICEINFO</a></h3>
    NSString* RPL_SERVICEINFO;<br />
    <div class="desc">
      
          231 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_SERVLIST">RPL_SERVLIST</a></h3>
    NSString* RPL_SERVLIST;<br />
    <div class="desc">
      
          234 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_SERVLISTEND">RPL_SERVLISTEND</a></h3>
    NSString* RPL_SERVLISTEND;<br />
    <div class="desc">
      
          235 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSBLINE">RPL_STATSBLINE</a></h3>
    NSString* RPL_STATSBLINE;<br />
    <div class="desc">
      
          247 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSCLINE">RPL_STATSCLINE</a></h3>
    NSString* RPL_STATSCLINE;<br />
    <div class="desc">
      
          213 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSCOMMANDS">RPL_STATSCOMMANDS</a></h3>
    NSString* RPL_STATSCOMMANDS;<br />
    <div class="desc">
      
          212 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSDLINE">RPL_STATSDLINE</a></h3>
    NSString* RPL_STATSDLINE;<br />
    <div class="desc">
      
          250 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSHLINE">RPL_STATSHLINE</a></h3>
    NSString* RPL_STATSHLINE;<br />
    <div class="desc">
      
          244 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSILINE">RPL_STATSILINE</a></h3>
    NSString* RPL_STATSILINE;<br />
    <div class="desc">
      
          215 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSKLINE">RPL_STATSKLINE</a></h3>
    NSString* RPL_STATSKLINE;<br />
    <div class="desc">
      
          216 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSLINKINFO">RPL_STATSLINKINFO</a></h3>
    NSString* RPL_STATSLINKINFO;<br />
    <div class="desc">
      
          211 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSLLINE">RPL_STATSLLINE</a></h3>
    NSString* RPL_STATSLLINE;<br />
    <div class="desc">
      
          241 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSNLINE">RPL_STATSNLINE</a></h3>
    NSString* RPL_STATSNLINE;<br />
    <div class="desc">
      
          214 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSOLINE">RPL_STATSOLINE</a></h3>
    NSString* RPL_STATSOLINE;<br />
    <div class="desc">
      
          243 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSPING">RPL_STATSPING</a></h3>
    NSString* RPL_STATSPING;<br />
    <div class="desc">
      
          246 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSQLINE">RPL_STATSQLINE</a></h3>
    NSString* RPL_STATSQLINE;<br />
    <div class="desc">
      
          217 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSSLINE">RPL_STATSSLINE</a></h3>
    NSString* RPL_STATSSLINE;<br />
    <div class="desc">
      
          245 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSUPTIME">RPL_STATSUPTIME</a></h3>
    NSString* RPL_STATSUPTIME;<br />
    <div class="desc">
      
          242 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSVLINE">RPL_STATSVLINE</a></h3>
    NSString* RPL_STATSVLINE;<br />
    <div class="desc">
      
          240 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_STATSYLINE">RPL_STATSYLINE</a></h3>
    NSString* RPL_STATSYLINE;<br />
    <div class="desc">
      
          218 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_SUMMONING">RPL_SUMMONING</a></h3>
    NSString* RPL_SUMMONING;<br />
    <div class="desc">
      
          342 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TIME">RPL_TIME</a></h3>
    NSString* RPL_TIME;<br />
    <div class="desc">
      
          391 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TOPIC">RPL_TOPIC</a></h3>
    NSString* RPL_TOPIC;<br />
    <div class="desc">
      
          332 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACECLASS">RPL_TRACECLASS</a></h3>
    NSString* RPL_TRACECLASS;<br />
    <div class="desc">
      
          209 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACECONNECTING">RPL_TRACECONNECTING</a></h3>
    NSString* RPL_TRACECONNECTING;<br />
    <div class="desc">
      
          201 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACEEND">RPL_TRACEEND</a></h3>
    NSString* RPL_TRACEEND;<br />
    <div class="desc">
      
          262 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACEHANDSHAKE">RPL_TRACEHANDSHAKE</a></h3>
    NSString* RPL_TRACEHANDSHAKE;<br />
    <div class="desc">
      
          202 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACELINK">RPL_TRACELINK</a></h3>
    NSString* RPL_TRACELINK;<br />
    <div class="desc">
      
          200 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACELOG">RPL_TRACELOG</a></h3>
    NSString* RPL_TRACELOG;<br />
    <div class="desc">
      
          261 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACENEWTYPE">RPL_TRACENEWTYPE</a></h3>
    NSString* RPL_TRACENEWTYPE;<br />
    <div class="desc">
      
          208 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACEOPERATOR">RPL_TRACEOPERATOR</a></h3>
    NSString* RPL_TRACEOPERATOR;<br />
    <div class="desc">
      
          204 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACERECONNECT">RPL_TRACERECONNECT</a></h3>
    NSString* RPL_TRACERECONNECT;<br />
    <div class="desc">
      
          210 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACESERVER">RPL_TRACESERVER</a></h3>
    NSString* RPL_TRACESERVER;<br />
    <div class="desc">
      
          206 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACESERVICE">RPL_TRACESERVICE</a></h3>
    NSString* RPL_TRACESERVICE;<br />
    <div class="desc">
      
          207 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACEUNKNOWN">RPL_TRACEUNKNOWN</a></h3>
    NSString* RPL_TRACEUNKNOWN;<br />
    <div class="desc">
      
          203 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRACEUSER">RPL_TRACEUSER</a></h3>
    NSString* RPL_TRACEUSER;<br />
    <div class="desc">
      
          205 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_TRYAGAIN">RPL_TRYAGAIN</a></h3>
    NSString* RPL_TRYAGAIN;<br />
    <div class="desc">
      
          263 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_UMODEIS">RPL_UMODEIS</a></h3>
    NSString* RPL_UMODEIS;<br />
    <div class="desc">
      
          221 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_UNAWAY">RPL_UNAWAY</a></h3>
    NSString* RPL_UNAWAY;<br />
    <div class="desc">
      
          305 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_UNIQOPIS">RPL_UNIQOPIS</a></h3>
    NSString* RPL_UNIQOPIS;<br />
    <div class="desc">
      
          325 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_USERHOST">RPL_USERHOST</a></h3>
    NSString* RPL_USERHOST;<br />
    <div class="desc">
      
          302 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_USERS">RPL_USERS</a></h3>
    NSString* RPL_USERS;<br />
    <div class="desc">
      
          393 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_USERSSTART">RPL_USERSSTART</a></h3>
    NSString* RPL_USERSSTART;<br />
    <div class="desc">
      
          392 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_VERSION">RPL_VERSION</a></h3>
    NSString* RPL_VERSION;<br />
    <div class="desc">
      
          351 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WELCOME">RPL_WELCOME</a></h3>
    NSString* RPL_WELCOME;<br />
    <div class="desc">
      
          001 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WHOISCHANNELS">RPL_WHOISCHANNELS</a></h3>
    NSString* RPL_WHOISCHANNELS;<br />
    <div class="desc">
      
          319 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WHOISCHANOP">RPL_WHOISCHANOP</a></h3>
    NSString* RPL_WHOISCHANOP;<br />
    <div class="desc">
      
          316 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WHOISIDLE">RPL_WHOISIDLE</a></h3>
    NSString* RPL_WHOISIDLE;<br />
    <div class="desc">
      
          317 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WHOISOPERATOR">RPL_WHOISOPERATOR</a></h3>
    NSString* RPL_WHOISOPERATOR;<br />
    <div class="desc">
      
          313 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WHOISSERVER">RPL_WHOISSERVER</a></h3>
    NSString* RPL_WHOISSERVER;<br />
    <div class="desc">
      
          312 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WHOISUSER">RPL_WHOISUSER</a></h3>
    NSString* RPL_WHOISUSER;<br />
    <div class="desc">
      
          311 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WHOREPLY">RPL_WHOREPLY</a></h3>
    NSString* RPL_WHOREPLY;<br />
    <div class="desc">
      
          352 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_WHOWASUSER">RPL_WHOWASUSER</a></h3>
    NSString* RPL_WHOWASUSER;<br />
    <div class="desc">
      
          314 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_YOUREOPER">RPL_YOUREOPER</a></h3>
    NSString* RPL_YOUREOPER;<br />
    <div class="desc">
      
          381 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_YOURESERVICE">RPL_YOURESERVICE</a></h3>
    NSString* RPL_YOURESERVICE;<br />
    <div class="desc">
      
          383 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="variable$RPL_YOURHOST">RPL_YOURHOST</a></h3>
    NSString* RPL_YOURHOST;<br />
    <div class="desc">
      
          002 - Please see RFC 1459 for additional information.
        
    </div>
    <hr width="25%" align="left" />

          <h1><a name="006000000000">IRCObject functions</a></h1>
    <p>
    </p>
    <h3><a name="function$ExtractIRCHost">ExtractIRCHost</a></h3>
    NSString* ExtractIRCHost(NSString* <b>prefix</b>);<br />
    <div class="desc">
      
          Returns the host portion of a <var>prefix</var>. On
          any argument after from: in the class reference, the name
          could be in the format nickname!host. Returns
          <code>nil</code> if the <var>prefix</var> is not in
          the correct format.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="function$ExtractIRCNick">ExtractIRCNick</a></h3>
    NSString* ExtractIRCNick(NSString* <b>prefix</b>);<br />
    <div class="desc">
      
          Returns the nickname portion of a <var>prefix</var>.
          On any argument after from: in the class reference, the
          name could be in the format of nickname!host. Will
          always return a valid string.
        
    </div>
    <hr width="25%" align="left" />
    <h3><a name="function$SeparateIRCNickAndHost">SeparateIRCNickAndHost</a></h3>
    NSArray* SeparateIRCNickAndHost(NSString* <b>prefix</b>);<br />
    <div class="desc">
      
          Returns an array of the nickname/host of a
          <var>prefix</var>. In the case that the array has only
          one object, it will be the nickname. In the case that it
          has two, it will be [nickname, host]. The object will
          always be at least one object <strong>long</strong>
          and never more than two.
        
    </div>
    <hr width="25%" align="left" />
    <br />
    <a href="index.html">Up</a>
    </font>
</body>
</html>