summaryrefslogtreecommitdiff
path: root/docs/man/man3/Module.3
blob: e5b8425807cb214c38151331cc7bba39965ff18b (plain)
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
.TH "Module" 3 "9 Dec 2005" "Version 1.0Betareleases" "InspIRCd" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Module \- Base class for all InspIRCd modules This class is the base class for InspIRCd modules.  

.PP
.SH SYNOPSIS
.br
.PP
\fC#include <modules.h>\fP
.PP
Inherits \fBclassbase\fP.
.PP
.SS "Public Member Functions"

.in +1c
.ti -1c
.RI "\fBModule\fP (\fBServer\fP *Me)"
.br
.RI "\fIDefault constructor Creates a module class. \fP"
.ti -1c
.RI "virtual \fB~Module\fP ()"
.br
.RI "\fIDefault destructor destroys a module class. \fP"
.ti -1c
.RI "virtual \fBVersion\fP \fBGetVersion\fP ()"
.br
.RI "\fIReturns the version number of a Module. \fP"
.ti -1c
.RI "virtual void \fBOnUserConnect\fP (\fBuserrec\fP *user)"
.br
.RI "\fICalled when a user connects. \fP"
.ti -1c
.RI "virtual void \fBOnUserQuit\fP (\fBuserrec\fP *user, \fBstd::string\fP message)"
.br
.RI "\fICalled when a user quits. \fP"
.ti -1c
.RI "virtual void \fBOnUserDisconnect\fP (\fBuserrec\fP *user)"
.br
.RI "\fICalled whenever a user's socket is closed. \fP"
.ti -1c
.RI "virtual void \fBOnUserJoin\fP (\fBuserrec\fP *user, \fBchanrec\fP *channel)"
.br
.RI "\fICalled when a user joins a channel. \fP"
.ti -1c
.RI "virtual void \fBOnUserPart\fP (\fBuserrec\fP *user, \fBchanrec\fP *channel)"
.br
.RI "\fICalled when a user parts a channel. \fP"
.ti -1c
.RI "virtual void \fBOnRehash\fP (\fBstd::string\fP parameter)"
.br
.RI "\fICalled on rehash. \fP"
.ti -1c
.RI "virtual void \fBOnServerRaw\fP (\fBstd::string\fP &raw, bool inbound, \fBuserrec\fP *user)"
.br
.RI "\fICalled when a raw command is transmitted or received. \fP"
.ti -1c
.RI "virtual int \fBOnExtendedMode\fP (\fBuserrec\fP *user, void *target, char modechar, int type, bool mode_on, \fBstring_list\fP &params)"
.br
.RI "\fICalled whenever an extended mode is to be processed. \fP"
.ti -1c
.RI "virtual int \fBOnUserPreJoin\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, const char *cname)"
.br
.RI "\fICalled whenever a user is about to join a channel, before any processing is done. \fP"
.ti -1c
.RI "virtual int \fBOnUserPreKick\fP (\fBuserrec\fP *source, \fBuserrec\fP *user, \fBchanrec\fP *chan, \fBstd::string\fP reason)"
.br
.RI "\fICalled whenever a user is about to be kicked. \fP"
.ti -1c
.RI "virtual void \fBOnUserKick\fP (\fBuserrec\fP *source, \fBuserrec\fP *user, \fBchanrec\fP *chan, \fBstd::string\fP reason)"
.br
.RI "\fICalled whenever a user is kicked. \fP"
.ti -1c
.RI "virtual void \fBOnOper\fP (\fBuserrec\fP *user, \fBstd::string\fP opertype)"
.br
.RI "\fICalled whenever a user opers locally. \fP"
.ti -1c
.RI "virtual void \fBOnInfo\fP (\fBuserrec\fP *user)"
.br
.RI "\fICalled whenever a user types /INFO. \fP"
.ti -1c
.RI "virtual void \fBOnWhois\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest)"
.br
.RI "\fICalled whenever a /WHOIS is performed on a local user. \fP"
.ti -1c
.RI "virtual int \fBOnUserPreInvite\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest, \fBchanrec\fP *channel)"
.br
.RI "\fICalled whenever a user is about to invite another user into a channel, before any processing is done. \fP"
.ti -1c
.RI "virtual void \fBOnUserInvite\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest, \fBchanrec\fP *channel)"
.br
.RI "\fICalled after a user has been successfully invited to a channel. \fP"
.ti -1c
.RI "virtual int \fBOnUserPreMessage\fP (\fBuserrec\fP *user, void *dest, int target_type, \fBstd::string\fP &text)"
.br
.RI "\fICalled whenever a user is about to PRIVMSG A user or a channel, before any processing is done. \fP"
.ti -1c
.RI "virtual int \fBOnUserPreNotice\fP (\fBuserrec\fP *user, void *dest, int target_type, \fBstd::string\fP &text)"
.br
.RI "\fICalled whenever a user is about to NOTICE A user or a channel, before any processing is done. \fP"
.ti -1c
.RI "virtual int \fBOnUserPreNick\fP (\fBuserrec\fP *user, \fBstd::string\fP newnick)"
.br
.RI "\fICalled before any nickchange, local or remote. \fP"
.ti -1c
.RI "virtual void \fBOnUserMessage\fP (\fBuserrec\fP *user, void *dest, int target_type, \fBstd::string\fP text)"
.br
.RI "\fICalled after any PRIVMSG sent from a user. \fP"
.ti -1c
.RI "virtual void \fBOnUserNotice\fP (\fBuserrec\fP *user, void *dest, int target_type, \fBstd::string\fP text)"
.br
.RI "\fICalled after any NOTICE sent from a user. \fP"
.ti -1c
.RI "virtual void \fBOnMode\fP (\fBuserrec\fP *user, void *dest, int target_type, \fBstd::string\fP text)"
.br
.RI "\fICalled after every MODE command sent from a user The dest variable contains a userrec* if target_type is TYPE_USER and a chanrec* if target_type is TYPE_CHANNEL. \fP"
.ti -1c
.RI "virtual void \fBOnGetServerDescription\fP (\fBstd::string\fP servername, \fBstd::string\fP &description)"
.br
.RI "\fIAllows modules to alter or create server descriptions Whenever a module requires a server description, for example for display in WHOIS, this function is called in all modules. \fP"
.ti -1c
.RI "virtual void \fBOnSyncUser\fP (\fBuserrec\fP *user, \fBModule\fP *proto, void *opaque)"
.br
.RI "\fIAllows modules to synchronize data which relates to users during a netburst. \fP"
.ti -1c
.RI "virtual void \fBOnSyncChannel\fP (\fBchanrec\fP *chan, \fBModule\fP *proto, void *opaque)"
.br
.RI "\fIAllows modules to synchronize data which relates to channels during a netburst. \fP"
.ti -1c
.RI "virtual void \fBOnSyncChannelMetaData\fP (\fBchanrec\fP *chan, \fBModule\fP *proto, void *opaque, \fBstd::string\fP extname)"
.br
.ti -1c
.RI "virtual void \fBOnSyncUserMetaData\fP (\fBuserrec\fP *user, \fBModule\fP *proto, void *opaque, \fBstd::string\fP extname)"
.br
.ti -1c
.RI "virtual void \fBOnDecodeMetaData\fP (int target_type, void *target, \fBstd::string\fP extname, \fBstd::string\fP extdata)"
.br
.RI "\fIAllows module data, sent via ProtoSendMetaData, to be decoded again by a receiving module. \fP"
.ti -1c
.RI "virtual void \fBProtoSendMode\fP (void *opaque, int target_type, void *target, \fBstd::string\fP modeline)"
.br
.RI "\fIImplemented by modules which provide the ability to link servers. \fP"
.ti -1c
.RI "virtual void \fBProtoSendMetaData\fP (void *opaque, int target_type, void *target, \fBstd::string\fP extname, \fBstd::string\fP extdata)"
.br
.RI "\fIImplemented by modules which provide the ability to link servers. \fP"
.ti -1c
.RI "virtual void \fBOnWallops\fP (\fBuserrec\fP *user, \fBstd::string\fP text)"
.br
.RI "\fICalled after every WALLOPS command. \fP"
.ti -1c
.RI "virtual void \fBOnChangeHost\fP (\fBuserrec\fP *user, \fBstd::string\fP newhost)"
.br
.RI "\fICalled whenever a user's hostname is changed. \fP"
.ti -1c
.RI "virtual void \fBOnChangeName\fP (\fBuserrec\fP *user, \fBstd::string\fP gecos)"
.br
.RI "\fICalled whenever a user's GECOS (realname) is changed. \fP"
.ti -1c
.RI "virtual void \fBOnAddGLine\fP (long duration, \fBuserrec\fP *source, \fBstd::string\fP reason, \fBstd::string\fP hostmask)"
.br
.RI "\fICalled whenever a gline is added by a local user. \fP"
.ti -1c
.RI "virtual void \fBOnAddZLine\fP (long duration, \fBuserrec\fP *source, \fBstd::string\fP reason, \fBstd::string\fP ipmask)"
.br
.RI "\fICalled whenever a zline is added by a local user. \fP"
.ti -1c
.RI "virtual void \fBOnAddKLine\fP (long duration, \fBuserrec\fP *source, \fBstd::string\fP reason, \fBstd::string\fP hostmask)"
.br
.RI "\fICalled whenever a kline is added by a local user. \fP"
.ti -1c
.RI "virtual void \fBOnAddQLine\fP (long duration, \fBuserrec\fP *source, \fBstd::string\fP reason, \fBstd::string\fP nickmask)"
.br
.RI "\fICalled whenever a qline is added by a local user. \fP"
.ti -1c
.RI "virtual void \fBOnAddELine\fP (long duration, \fBuserrec\fP *source, \fBstd::string\fP reason, \fBstd::string\fP hostmask)"
.br
.RI "\fICalled whenever a eline is added by a local user. \fP"
.ti -1c
.RI "virtual void \fBOnDelGLine\fP (\fBuserrec\fP *source, \fBstd::string\fP hostmask)"
.br
.RI "\fICalled whenever a gline is deleted. \fP"
.ti -1c
.RI "virtual void \fBOnDelZLine\fP (\fBuserrec\fP *source, \fBstd::string\fP ipmask)"
.br
.RI "\fICalled whenever a zline is deleted. \fP"
.ti -1c
.RI "virtual void \fBOnDelKLine\fP (\fBuserrec\fP *source, \fBstd::string\fP hostmask)"
.br
.RI "\fICalled whenever a kline is deleted. \fP"
.ti -1c
.RI "virtual void \fBOnDelQLine\fP (\fBuserrec\fP *source, \fBstd::string\fP nickmask)"
.br
.RI "\fICalled whenever a qline is deleted. \fP"
.ti -1c
.RI "virtual void \fBOnDelELine\fP (\fBuserrec\fP *source, \fBstd::string\fP hostmask)"
.br
.RI "\fICalled whenever a eline is deleted. \fP"
.ti -1c
.RI "virtual void \fBOnCleanup\fP (int target_type, void *item)"
.br
.RI "\fICalled before your module is unloaded to clean up Extensibles. \fP"
.ti -1c
.RI "virtual void \fBOnUserPostNick\fP (\fBuserrec\fP *user, \fBstd::string\fP oldnick)"
.br
.RI "\fICalled after any nickchange, local or remote. \fP"
.ti -1c
.RI "virtual int \fBOnAccessCheck\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest, \fBchanrec\fP *channel, int access_type)"
.br
.RI "\fICalled before an action which requires a channel privilage check. \fP"
.ti -1c
.RI "virtual void \fBOn005Numeric\fP (\fBstd::string\fP &output)"
.br
.RI "\fICalled when a 005 numeric is about to be output. \fP"
.ti -1c
.RI "virtual int \fBOnKill\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest, \fBstd::string\fP reason)"
.br
.RI "\fICalled when a client is disconnected by KILL. \fP"
.ti -1c
.RI "virtual void \fBOnRemoteKill\fP (\fBuserrec\fP *source, \fBuserrec\fP *dest, \fBstd::string\fP reason)"
.br
.RI "\fICalled when an oper wants to disconnect a remote user via KILL. \fP"
.ti -1c
.RI "virtual void \fBOnLoadModule\fP (\fBModule\fP *mod, \fBstd::string\fP name)"
.br
.RI "\fICalled whenever a module is loaded. \fP"
.ti -1c
.RI "virtual void \fBOnUnloadModule\fP (\fBModule\fP *mod, \fBstd::string\fP name)"
.br
.RI "\fICalled whenever a module is unloaded. \fP"
.ti -1c
.RI "virtual void \fBOnBackgroundTimer\fP (time_t curtime)"
.br
.RI "\fICalled once every five seconds for background processing. \fP"
.ti -1c
.RI "virtual void \fBOnSendList\fP (\fBuserrec\fP *user, \fBchanrec\fP *channel, char mode)"
.br
.RI "\fICalled whenever a list is needed for a listmode. \fP"
.ti -1c
.RI "virtual int \fBOnPreCommand\fP (\fBstd::string\fP command, char **parameters, int pcnt, \fBuserrec\fP *user)"
.br
.RI "\fICalled whenever any command is about to be executed. \fP"
.ti -1c
.RI "virtual bool \fBOnCheckReady\fP (\fBuserrec\fP *user)"
.br
.RI "\fICalled to check if a user who is connecting can now be allowed to register If any modules return false for this function, the user is held in the waiting state until all modules return true. \fP"
.ti -1c
.RI "virtual void \fBOnUserRegister\fP (\fBuserrec\fP *user)"
.br
.RI "\fICalled whenever a user is about to register their connection (e.g. \fP"
.ti -1c
.RI "virtual int \fBOnRawMode\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, char mode, \fBstd::string\fP param, bool adding, int pcnt)"
.br
.RI "\fICalled whenever a mode character is processed. \fP"
.ti -1c
.RI "virtual int \fBOnCheckInvite\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan)"
.br
.RI "\fICalled whenever a user joins a channel, to determine if invite checks should go ahead or not. \fP"
.ti -1c
.RI "virtual int \fBOnCheckKey\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, \fBstd::string\fP keygiven)"
.br
.RI "\fICalled whenever a user joins a channel, to determine if key checks should go ahead or not. \fP"
.ti -1c
.RI "virtual int \fBOnCheckLimit\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan)"
.br
.RI "\fICalled whenever a user joins a channel, to determine if channel limit checks should go ahead or not. \fP"
.ti -1c
.RI "virtual int \fBOnCheckBan\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan)"
.br
.RI "\fICalled whenever a user joins a channel, to determine if banlist checks should go ahead or not. \fP"
.ti -1c
.RI "virtual void \fBOnStats\fP (char symbol)"
.br
.RI "\fICalled on all /STATS commands This method is triggered for all /STATS use, including stats symbols handled by the core. \fP"
.ti -1c
.RI "virtual int \fBOnChangeLocalUserHost\fP (\fBuserrec\fP *user, \fBstd::string\fP newhost)"
.br
.RI "\fICalled whenever a change of a local users displayed host is attempted. \fP"
.ti -1c
.RI "virtual int \fBOnChangeLocalUserGECOS\fP (\fBuserrec\fP *user, \fBstd::string\fP newhost)"
.br
.RI "\fICalled whenever a change of a local users GECOS (fullname field) is attempted. \fP"
.ti -1c
.RI "virtual int \fBOnLocalTopicChange\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, \fBstd::string\fP topic)"
.br
.RI "\fICalled whenever a topic is changed by a local user. \fP"
.ti -1c
.RI "virtual void \fBOnPostLocalTopicChange\fP (\fBuserrec\fP *user, \fBchanrec\fP *chan, \fBstd::string\fP topic)"
.br
.RI "\fICalled whenever a local topic has been changed. \fP"
.ti -1c
.RI "virtual void \fBOnEvent\fP (\fBEvent\fP *event)"
.br
.RI "\fICalled whenever an \fBEvent\fP class is sent to all module by another module. \fP"
.ti -1c
.RI "virtual char * \fBOnRequest\fP (\fBRequest\fP *request)"
.br
.RI "\fICalled whenever a \fBRequest\fP class is sent to your module by another module. \fP"
.ti -1c
.RI "virtual int \fBOnOperCompare\fP (\fBstd::string\fP password, \fBstd::string\fP input)"
.br
.RI "\fICalled whenever an oper password is to be compared to what a user has input. \fP"
.ti -1c
.RI "virtual void \fBOnGlobalOper\fP (\fBuserrec\fP *user)"
.br
.RI "\fICalled whenever a user is given usermode +o, anywhere on the network. \fP"
.ti -1c
.RI "virtual void \fBOnGlobalConnect\fP (\fBuserrec\fP *user)"
.br
.RI "\fICalled whenever a user connects, anywhere on the network. \fP"
.ti -1c
.RI "virtual int \fBOnAddBan\fP (\fBuserrec\fP *source, \fBchanrec\fP *channel, \fBstd::string\fP banmask)"
.br
.RI "\fICalled whenever a ban is added to a channel's list. \fP"
.ti -1c
.RI "virtual int \fBOnDelBan\fP (\fBuserrec\fP *source, \fBchanrec\fP *channel, \fBstd::string\fP banmask)"
.br
.RI "\fICalled whenever a ban is removed from a channel's list. \fP"
.ti -1c
.RI "virtual void \fBOnRawSocketAccept\fP (int fd, \fBstd::string\fP ip, int localport)"
.br
.RI "\fICalled immediately after any connection is accepted. \fP"
.ti -1c
.RI "virtual int \fBOnRawSocketWrite\fP (int fd, char *buffer, int count)"
.br
.RI "\fICalled immediately before any write() operation on a user's socket in the core. \fP"
.ti -1c
.RI "virtual void \fBOnRawSocketClose\fP (int fd)"
.br
.RI "\fICalled immediately before any socket is closed. \fP"
.ti -1c
.RI "virtual int \fBOnRawSocketRead\fP (int fd, char *buffer, unsigned int count, int &readresult)"
.br
.RI "\fICalled immediately before any read() operation on a client socket in the core. \fP"
.in -1c
.SH "Detailed Description"
.PP 
Base class for all InspIRCd modules This class is the base class for InspIRCd modules. 

All modules must inherit from this class, its methods will be called when irc server events occur. class inherited from module must be instantiated by the \fBModuleFactory\fP class (see relevent section) for the plugin to be initialised.
.PP
Definition at line 239 of file modules.h.
.SH "Constructor & Destructor Documentation"
.PP 
.SS "Module::Module (\fBServer\fP * Me)"
.PP
Default constructor Creates a module class. 
.PP
\fBParameters:\fP
.RS 4
\fIMe\fP An instance of the \fBServer\fP class which can be saved for future use
.RE
.PP

.PP
Definition at line 307 of file modules.cpp.
.PP
.nf
307 { }
.fi
.PP
.SS "Module::~Module ()\fC [virtual]\fP"
.PP
Default destructor destroys a module class. 
.PP
Definition at line 308 of file modules.cpp.
.PP
.nf
308 { }
.fi
.PP
.SH "Member Function Documentation"
.PP 
.SS "\fBVersion\fP Module::GetVersion ()\fC [virtual]\fP"
.PP
Returns the version number of a Module. 
.PP
The method should return a \fBVersion\fP object with its version information assigned via \fBVersion::Version\fP
.PP
Definition at line 321 of file modules.cpp.
.PP
References VF_VENDOR.
.PP
.nf
321 { return Version(1,0,0,0,VF_VENDOR); }
.fi
.PP
.SS "void Module::On005Numeric (\fBstd::string\fP & output)\fC [virtual]\fP"
.PP
Called when a 005 numeric is about to be output. 
.PP
The module should modify the 005 numeric if needed to indicate its features. 
.PP
\fBParameters:\fP
.RS 4
\fIoutput\fP The 005 string to be modified if neccessary.
.RE
.PP

.PP
Definition at line 331 of file modules.cpp.
.PP
.nf
331 { };
.fi
.PP
.SS "int Module::OnAccessCheck (\fBuserrec\fP * source, \fBuserrec\fP * dest, \fBchanrec\fP * channel, int access_type)\fC [virtual]\fP"
.PP
Called before an action which requires a channel privilage check. 
.PP
This function is called before many functions which check a users status on a channel, for example before opping a user, deopping a user, kicking a user, etc. There are several values for access_type which indicate for what reason access is being checked. These are:
.br

.br
 AC_KICK (0) - A user is being kicked
.br
 AC_DEOP (1) - a user is being deopped
.br
 AC_OP (2) - a user is being opped
.br
 AC_VOICE (3) - a user is being voiced
.br
 AC_DEVOICE (4) - a user is being devoiced
.br
 AC_HALFOP (5) - a user is being halfopped
.br
 AC_DEHALFOP (6) - a user is being dehalfopped
.br
 AC_INVITE (7) - a user is being invited
.br
 AC_GENERAL_MODE (8) - a user channel mode is being changed<br>
.br
 Upon returning from your function you must return either ACR_DEFAULT, to indicate the module wishes to do nothing, or ACR_DENY where approprate to deny the action, and ACR_ALLOW where appropriate to allow the action. Please note that in the case of some access checks (such as AC_GENERAL_MODE) access may be denied 'upstream' causing other checks such as AC_DEOP to not be reached. Be very careful with use of the AC_GENERAL_MODE type, as it may inadvertently override the behaviour of other modules. When the access_type is AC_GENERAL_MODE, the destination of the mode will be NULL (as it has not yet been determined). 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The source of the access check 
.br
\fIdest\fP The destination of the access check 
.br
\fIchannel\fP The channel which is being checked 
.br
\fIaccess_type\fP See above
.RE
.PP

.PP
Definition at line 330 of file modules.cpp.
.PP
References ACR_DEFAULT.
.PP
.nf
330 { return ACR_DEFAULT; };
.fi
.PP
.SS "int Module::OnAddBan (\fBuserrec\fP * source, \fBchanrec\fP * channel, \fBstd::string\fP banmask)\fC [virtual]\fP"
.PP
Called whenever a ban is added to a channel's list. 
.PP
Return a non-zero value to 'eat' the mode change and prevent the ban from being added. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user adding the ban 
.br
\fIchannel\fP The channel the ban is being added to 
.br
\fIbanmask\fP The ban mask being added 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to block the ban, 0 to continue as normal
.RE
.PP

.PP
Definition at line 356 of file modules.cpp.
.PP
.nf
356 { return 0; };
.fi
.PP
.SS "void Module::OnAddELine (long duration, \fBuserrec\fP * source, \fBstd::string\fP reason, \fBstd::string\fP hostmask)\fC [virtual]\fP"
.PP
Called whenever a eline is added by a local user. 
.PP
This method is triggered after the line is added. 
.PP
\fBParameters:\fP
.RS 4
\fIduration\fP The duration of the line in seconds 
.br
\fIsource\fP The sender of the line 
.br
\fIreason\fP The reason text to be displayed 
.br
\fIhostmask\fP The hostmask to add
.RE
.PP

.PP
Definition at line 382 of file modules.cpp.
.PP
.nf
382 { };
.fi
.PP
.SS "void Module::OnAddGLine (long duration, \fBuserrec\fP * source, \fBstd::string\fP reason, \fBstd::string\fP hostmask)\fC [virtual]\fP"
.PP
Called whenever a gline is added by a local user. 
.PP
This method is triggered after the line is added. 
.PP
\fBParameters:\fP
.RS 4
\fIduration\fP The duration of the line in seconds 
.br
\fIsource\fP The sender of the line 
.br
\fIreason\fP The reason text to be displayed 
.br
\fIhostmask\fP The hostmask to add
.RE
.PP

.PP
Definition at line 378 of file modules.cpp.
.PP
.nf
378 { };
.fi
.PP
.SS "void Module::OnAddKLine (long duration, \fBuserrec\fP * source, \fBstd::string\fP reason, \fBstd::string\fP hostmask)\fC [virtual]\fP"
.PP
Called whenever a kline is added by a local user. 
.PP
This method is triggered after the line is added. 
.PP
\fBParameters:\fP
.RS 4
\fIduration\fP The duration of the line in seconds 
.br
\fIsource\fP The sender of the line 
.br
\fIreason\fP The reason text to be displayed 
.br
\fIhostmask\fP The hostmask to add
.RE
.PP

.PP
Definition at line 380 of file modules.cpp.
.PP
.nf
380 { };
.fi
.PP
.SS "void Module::OnAddQLine (long duration, \fBuserrec\fP * source, \fBstd::string\fP reason, \fBstd::string\fP nickmask)\fC [virtual]\fP"
.PP
Called whenever a qline is added by a local user. 
.PP
This method is triggered after the line is added. 
.PP
\fBParameters:\fP
.RS 4
\fIduration\fP The duration of the line in seconds 
.br
\fIsource\fP The sender of the line 
.br
\fIreason\fP The reason text to be displayed 
.br
\fInickmask\fP The hostmask to add
.RE
.PP

.PP
Definition at line 381 of file modules.cpp.
.PP
.nf
381 { };
.fi
.PP
.SS "void Module::OnAddZLine (long duration, \fBuserrec\fP * source, \fBstd::string\fP reason, \fBstd::string\fP ipmask)\fC [virtual]\fP"
.PP
Called whenever a zline is added by a local user. 
.PP
This method is triggered after the line is added. 
.PP
\fBParameters:\fP
.RS 4
\fIduration\fP The duration of the line in seconds 
.br
\fIsource\fP The sender of the line 
.br
\fIreason\fP The reason text to be displayed 
.br
\fIipmask\fP The hostmask to add
.RE
.PP

.PP
Definition at line 379 of file modules.cpp.
.PP
.nf
379 { };
.fi
.PP
.SS "void Module::OnBackgroundTimer (time_t curtime)\fC [virtual]\fP"
.PP
Called once every five seconds for background processing. 
.PP
This timer can be used to control timed features. Its period is not accurate enough to be used as a clock, but it is gauranteed to be called at least once in any five second period, directly from the main loop of the server. 
.PP
\fBParameters:\fP
.RS 4
\fIcurtime\fP The current timer derived from time(2)
.RE
.PP

.PP
Definition at line 335 of file modules.cpp.
.PP
.nf
335 { };
.fi
.PP
.SS "void Module::OnChangeHost (\fBuserrec\fP * user, \fBstd::string\fP newhost)\fC [virtual]\fP"
.PP
Called whenever a user's hostname is changed. 
.PP
This event triggers after the host has been set. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user whos host is being changed 
.br
\fInewhost\fP The new hostname being set
.RE
.PP

.PP
Definition at line 376 of file modules.cpp.
.PP
.nf
376 { };
.fi
.PP
.SS "int Module::OnChangeLocalUserGECOS (\fBuserrec\fP * user, \fBstd::string\fP newhost)\fC [virtual]\fP"
.PP
Called whenever a change of a local users GECOS (fullname field) is attempted. 
.PP
return 1 to deny the name change, or 0 to allow it. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user whos GECOS will be changed 
.br
\fInewhost\fP The new GECOS 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to deny the GECOS change, 0 to allow
.RE
.PP

.PP
Definition at line 349 of file modules.cpp.
.PP
.nf
349 { return 0; };
.fi
.PP
.SS "int Module::OnChangeLocalUserHost (\fBuserrec\fP * user, \fBstd::string\fP newhost)\fC [virtual]\fP"
.PP
Called whenever a change of a local users displayed host is attempted. 
.PP
Return 1 to deny the host change, or 0 to allow it. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user whos host will be changed 
.br
\fInewhost\fP The new hostname 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to deny the host change, 0 to allow
.RE
.PP

.PP
Definition at line 348 of file modules.cpp.
.PP
.nf
348 { return 0; };
.fi
.PP
.SS "void Module::OnChangeName (\fBuserrec\fP * user, \fBstd::string\fP gecos)\fC [virtual]\fP"
.PP
Called whenever a user's GECOS (realname) is changed. 
.PP
This event triggers after the name has been set. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who's GECOS is being changed 
.br
\fIgecos\fP The new GECOS being set on the user
.RE
.PP

.PP
Definition at line 377 of file modules.cpp.
.PP
.nf
377 { };
.fi
.PP
.SS "int Module::OnCheckBan (\fBuserrec\fP * user, \fBchanrec\fP * chan)\fC [virtual]\fP"
.PP
Called whenever a user joins a channel, to determine if banlist checks should go ahead or not. 
.PP
This method will always be called for each join, wether or not the user actually matches a channel ban, and determines the outcome of an if statement around the whole section of ban checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user joining the channel 
.br
\fIchan\fP The channel being joined 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to explicitly allow the join, 0 to proceed as normal
.RE
.PP

.PP
Definition at line 346 of file modules.cpp.
.PP
.nf
346 { return 0; };
.fi
.PP
.SS "int Module::OnCheckInvite (\fBuserrec\fP * user, \fBchanrec\fP * chan)\fC [virtual]\fP"
.PP
Called whenever a user joins a channel, to determine if invite checks should go ahead or not. 
.PP
This method will always be called for each join, wether or not the channel is actually +i, and determines the outcome of an if statement around the whole section of invite checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user joining the channel 
.br
\fIchan\fP The channel being joined 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to explicitly allow the join, 0 to proceed as normal
.RE
.PP

.PP
Definition at line 343 of file modules.cpp.
.PP
.nf
343 { return 0; };
.fi
.PP
.SS "int Module::OnCheckKey (\fBuserrec\fP * user, \fBchanrec\fP * chan, \fBstd::string\fP keygiven)\fC [virtual]\fP"
.PP
Called whenever a user joins a channel, to determine if key checks should go ahead or not. 
.PP
This method will always be called for each join, wether or not the channel is actually +k, and determines the outcome of an if statement around the whole section of key checking code. if the user specified no key, the keygiven string will be a valid but empty value. return 1 to explicitly allow the join to go ahead or 0 to ignore the event. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user joining the channel 
.br
\fIchan\fP The channel being joined 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to explicitly allow the join, 0 to proceed as normal
.RE
.PP

.PP
Definition at line 344 of file modules.cpp.
.PP
.nf
344 { return 0; };
.fi
.PP
.SS "int Module::OnCheckLimit (\fBuserrec\fP * user, \fBchanrec\fP * chan)\fC [virtual]\fP"
.PP
Called whenever a user joins a channel, to determine if channel limit checks should go ahead or not. 
.PP
This method will always be called for each join, wether or not the channel is actually +l, and determines the outcome of an if statement around the whole section of channel limit checking code. return 1 to explicitly allow the join to go ahead or 0 to ignore the event. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user joining the channel 
.br
\fIchan\fP The channel being joined 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to explicitly allow the join, 0 to proceed as normal
.RE
.PP

.PP
Definition at line 345 of file modules.cpp.
.PP
.nf
345 { return 0; };
.fi
.PP
.SS "bool Module::OnCheckReady (\fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called to check if a user who is connecting can now be allowed to register If any modules return false for this function, the user is held in the waiting state until all modules return true. 
.PP
For example a module which implements ident lookups will continue to return false for a user until their ident lookup is completed. Note that the registration timeout for a user overrides these checks, if the registration timeout is reached, the user is disconnected even if modules report that the user is not ready to connect. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user to check 
.RE
.PP
\fBReturns:\fP
.RS 4
true to indicate readiness, false if otherwise
.RE
.PP

.PP
Definition at line 338 of file modules.cpp.
.PP
.nf
338 { return true; };
.fi
.PP
.SS "void Module::OnCleanup (int target_type, void * item)\fC [virtual]\fP"
.PP
Called before your module is unloaded to clean up Extensibles. 
.PP
This method is called once for every user and channel on the network, so that when your module unloads it may clear up any remaining data in the form of Extensibles added using \fBExtensible::Extend()\fP. If the target_type variable is TYPE_USER, then void* item refers to a userrec*, otherwise it refers to a chanrec*. 
.PP
\fBParameters:\fP
.RS 4
\fItarget_type\fP The type of item being cleaned 
.br
\fIitem\fP A pointer to the item's class
.RE
.PP

.PP
Definition at line 388 of file modules.cpp.
.PP
.nf
388 { };
.fi
.PP
.SS "void Module::OnDecodeMetaData (int target_type, void * target, \fBstd::string\fP extname, \fBstd::string\fP extdata)\fC [virtual]\fP"
.PP
Allows module data, sent via ProtoSendMetaData, to be decoded again by a receiving module. 
.PP
Please see src/modules/m_swhois.cpp for a working example of how to use this method call. 
.PP
\fBParameters:\fP
.RS 4
\fItarget_type\fP The type of item to decode data for, TYPE_USER or TYPE_CHANNEL 
.br
\fItarget\fP The chanrec* or userrec* that data should be added to 
.br
\fIextname\fP The extension name which is being sent 
.br
\fIextdata\fP The extension data, encoded at the other end by an identical module through OnSyncChannelMetaData or OnSyncUserMetaData
.RE
.PP

.PP
Definition at line 373 of file modules.cpp.
.PP
.nf
373 { };
.fi
.PP
.SS "int Module::OnDelBan (\fBuserrec\fP * source, \fBchanrec\fP * channel, \fBstd::string\fP banmask)\fC [virtual]\fP"
.PP
Called whenever a ban is removed from a channel's list. 
.PP
Return a non-zero value to 'eat' the mode change and prevent the ban from being removed. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user deleting the ban 
.br
\fIchannel\fP The channel the ban is being deleted from 
.br
\fIbanmask\fP The ban mask being deleted 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to block the unban, 0 to continue as normal
.RE
.PP

.PP
Definition at line 357 of file modules.cpp.
.PP
.nf
357 { return 0; };
.fi
.PP
.SS "void Module::OnDelELine (\fBuserrec\fP * source, \fBstd::string\fP hostmask)\fC [virtual]\fP"
.PP
Called whenever a eline is deleted. 
.PP
This method is triggered after the line is deleted. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user removing the line 
.br
\fIhostmask\fP The hostmask to delete
.RE
.PP

.PP
Definition at line 387 of file modules.cpp.
.PP
.nf
387 { };
.fi
.PP
.SS "void Module::OnDelGLine (\fBuserrec\fP * source, \fBstd::string\fP hostmask)\fC [virtual]\fP"
.PP
Called whenever a gline is deleted. 
.PP
This method is triggered after the line is deleted. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user removing the line 
.br
\fIhostmask\fP The hostmask to delete
.RE
.PP

.PP
Definition at line 383 of file modules.cpp.
.PP
.nf
383 { };
.fi
.PP
.SS "void Module::OnDelKLine (\fBuserrec\fP * source, \fBstd::string\fP hostmask)\fC [virtual]\fP"
.PP
Called whenever a kline is deleted. 
.PP
This method is triggered after the line is deleted. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user removing the line 
.br
\fIhostmask\fP The hostmask to delete
.RE
.PP

.PP
Definition at line 385 of file modules.cpp.
.PP
.nf
385 { };
.fi
.PP
.SS "void Module::OnDelQLine (\fBuserrec\fP * source, \fBstd::string\fP nickmask)\fC [virtual]\fP"
.PP
Called whenever a qline is deleted. 
.PP
This method is triggered after the line is deleted. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user removing the line 
.br
\fIhostmask\fP The hostmask to delete
.RE
.PP

.PP
Definition at line 386 of file modules.cpp.
.PP
.nf
386 { };
.fi
.PP
.SS "void Module::OnDelZLine (\fBuserrec\fP * source, \fBstd::string\fP ipmask)\fC [virtual]\fP"
.PP
Called whenever a zline is deleted. 
.PP
This method is triggered after the line is deleted. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user removing the line 
.br
\fIhostmask\fP The hostmask to delete
.RE
.PP

.PP
Definition at line 384 of file modules.cpp.
.PP
.nf
384 { };
.fi
.PP
.SS "void Module::OnEvent (\fBEvent\fP * event)\fC [virtual]\fP"
.PP
Called whenever an \fBEvent\fP class is sent to all module by another module. 
.PP
Please see the documentation of \fBEvent::Send()\fP for further information. The \fBEvent\fP sent can always be assumed to be non-NULL, you should *always* check the value of \fBEvent::GetEventID()\fP before doing anything to the event data, and you should *not* change the event data in any way! 
.PP
\fBParameters:\fP
.RS 4
\fIevent\fP The \fBEvent\fP class being received
.RE
.PP

.PP
Definition at line 351 of file modules.cpp.
.PP
.nf
351 { return; };
.fi
.PP
.SS "int Module::OnExtendedMode (\fBuserrec\fP * user, void * target, char modechar, int type, bool mode_on, \fBstring_list\fP & params)\fC [virtual]\fP"
.PP
Called whenever an extended mode is to be processed. 
.PP
The type parameter is MT_SERVER, MT_CLIENT or MT_CHANNEL, dependent on where the mode is being changed. mode_on is set when the mode is being set, in which case params contains a list of parameters for the mode as strings. If mode_on is false, the mode is being removed, and parameters may contain the parameters for the mode, dependent on wether they were defined when a mode handler was set up with \fBServer::AddExtendedMode\fP If the mode is a channel mode, target is a chanrec*, and if it is a user mode, target is a userrec*. You must cast this value yourself to make use of it. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user issuing the mode 
.br
\fItarget\fP The user or channel having the mode set on them 
.br
\fImodechar\fP The mode character being set 
.br
\fItype\fP The type of mode (user or channel) being set 
.br
\fImode_on\fP True if the mode is being set, false if it is being unset 
.br
\fIparams\fP A list of parameters for any channel mode (currently supports either 0 or 1 parameters)
.RE
.PP

.PP
Definition at line 319 of file modules.cpp.
.PP
.nf
319 { return false; }
.fi
.PP
.SS "void Module::OnGetServerDescription (\fBstd::string\fP servername, \fBstd::string\fP & description)\fC [virtual]\fP"
.PP
Allows modules to alter or create server descriptions Whenever a module requires a server description, for example for display in WHOIS, this function is called in all modules. 
.PP
You may change or define the description given in \fBstd::string\fP &description. If you do, this description will be shown in the WHOIS fields. 
.PP
\fBParameters:\fP
.RS 4
\fIservername\fP The servername being searched for 
.br
\fIdescription\fP Alterable server description for this server
.RE
.PP

.PP
Definition at line 367 of file modules.cpp.
.PP
.nf
367 { };
.fi
.PP
.SS "void Module::OnGlobalConnect (\fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called whenever a user connects, anywhere on the network. 
.PP
This event is informational only. You should not change any user information in this event. To do so, use the OnUserConnect method to change the state of local users. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is connecting
.RE
.PP

.PP
Definition at line 355 of file modules.cpp.
.PP
.nf
355 { };
.fi
.PP
.SS "void Module::OnGlobalOper (\fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called whenever a user is given usermode +o, anywhere on the network. 
.PP
You cannot override this and prevent it from happening as it is already happened and such a task must be performed by another server. You can however bounce modes by sending servermodes out to reverse mode changes. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is opering
.RE
.PP

.PP
Definition at line 354 of file modules.cpp.
.PP
.nf
354 { };
.fi
.PP
.SS "void Module::OnInfo (\fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called whenever a user types /INFO. 
.PP
The userrec will contain the information of the user who typed the command. Modules may use this method to output their own credits in /INFO (which is the ircd's version of an about box). It is purposefully not possible to modify any info that has already been output, or halt the list. You must write a 371 numeric to the user, containing your info in the following format:
.PP
<nick> :information here
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user issuing /INFO
.RE
.PP

.PP
Definition at line 323 of file modules.cpp.
.PP
.nf
323 { };
.fi
.PP
.SS "int Module::OnKill (\fBuserrec\fP * source, \fBuserrec\fP * dest, \fBstd::string\fP reason)\fC [virtual]\fP"
.PP
Called when a client is disconnected by KILL. 
.PP
If a client is killed by a server, e.g. a nickname collision or protocol error, source is NULL. Return 1 from this function to prevent the kill, and 0 from this function to allow it as normal. If you prevent the kill no output will be sent to the client, it is down to your module to generate this information. NOTE: It is NOT advisable to stop kills which originate from servers or remote users. If you do so youre risking race conditions, desyncs and worse! 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user sending the KILL 
.br
\fIdest\fP The user being killed 
.br
\fIreason\fP The kill reason 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to prevent the kill, 0 to allow
.RE
.PP

.PP
Definition at line 332 of file modules.cpp.
.PP
.nf
332 { return 0; };
.fi
.PP
.SS "void Module::OnLoadModule (\fBModule\fP * mod, \fBstd::string\fP name)\fC [virtual]\fP"
.PP
Called whenever a module is loaded. 
.PP
mod will contain a pointer to the module, and string will contain its name, for example m_widgets.so. This function is primary for dependency checking, your module may decide to enable some extra features if it sees that you have for example loaded 'm_killwidgets.so' with 'm_makewidgets.so'. It is highly recommended that modules do *NOT* bail if they cannot satisfy dependencies, but instead operate under reduced functionality, unless the dependency is absolutely neccessary (e.g. a module that extends the features of another module). 
.PP
\fBParameters:\fP
.RS 4
\fImod\fP A pointer to the new module 
.br
\fIname\fP The new module's filename
.RE
.PP

.PP
Definition at line 333 of file modules.cpp.
.PP
.nf
333 { };
.fi
.PP
.SS "int Module::OnLocalTopicChange (\fBuserrec\fP * user, \fBchanrec\fP * chan, \fBstd::string\fP topic)\fC [virtual]\fP"
.PP
Called whenever a topic is changed by a local user. 
.PP
Return 1 to deny the topic change, or 0 to allow it. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user changing the topic 
.br
\fIchan\fP The channels who's topic is being changed 
.br
\fItopic\fP The actual topic text 
.br
\fI1\fP to block the topic change, 0 to allow
.RE
.PP

.PP
Definition at line 350 of file modules.cpp.
.PP
.nf
350 { return 0; };
.fi
.PP
.SS "void Module::OnMode (\fBuserrec\fP * user, void * dest, int target_type, \fBstd::string\fP text)\fC [virtual]\fP"
.PP
Called after every MODE command sent from a user The dest variable contains a userrec* if target_type is TYPE_USER and a chanrec* if target_type is TYPE_CHANNEL. 
.PP
The text variable contains the remainder of the mode string after the target, e.g. '+wsi' or '+ooo nick1 nick2 nick3'. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user sending the MODEs 
.br
\fIdest\fP The target of the modes (userrec* or chanrec*) 
.br
\fItarget_type\fP The type of target (TYPE_USER or TYPE_CHANNEL) 
.br
\fItext\fP The actual modes and their parameters if any
.RE
.PP

.PP
Definition at line 320 of file modules.cpp.
.PP
.nf
320 { };
.fi
.PP
.SS "void Module::OnOper (\fBuserrec\fP * user, \fBstd::string\fP opertype)\fC [virtual]\fP"
.PP
Called whenever a user opers locally. 
.PP
The userrec will contain the oper mode 'o' as this function is called after any modifications are made to the user's structure by the core. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is opering up 
.br
\fIopertype\fP The opers type name
.RE
.PP

.PP
Definition at line 322 of file modules.cpp.
.PP
.nf
322 { };
.fi
.PP
.SS "int Module::OnOperCompare (\fBstd::string\fP password, \fBstd::string\fP input)\fC [virtual]\fP"
.PP
Called whenever an oper password is to be compared to what a user has input. 
.PP
The password field (from the config file) is in 'password' and is to be compared against 'input'. This method allows for encryption of oper passwords and much more besides. You should return a nonzero value if you want to allow the comparison or zero if you wish to do nothing. 
.PP
\fBParameters:\fP
.RS 4
\fIpassword\fP The oper's password 
.br
\fIinput\fP The password entered 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to match the passwords, 0 to do nothing
.RE
.PP

.PP
Definition at line 353 of file modules.cpp.
.PP
.nf
353 { return 0; };
.fi
.PP
.SS "void Module::OnPostLocalTopicChange (\fBuserrec\fP * user, \fBchanrec\fP * chan, \fBstd::string\fP topic)\fC [virtual]\fP"
.PP
Called whenever a local topic has been changed. 
.PP
To block topic changes you must use OnLocalTopicChange instead. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user changing the topic 
.br
\fIchan\fP The channels who's topic is being changed 
.br
\fItopic\fP The actual topic text
.RE
.PP

.PP
Definition at line 366 of file modules.cpp.
.PP
.nf
366 { };
.fi
.PP
.SS "int Module::OnPreCommand (\fBstd::string\fP command, char ** parameters, int pcnt, \fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called whenever any command is about to be executed. 
.PP
This event occurs for all registered commands, wether they are registered in the core, or another module, but it will not occur for invalid commands (e.g. ones which do not exist within the command table). By returning 1 from this method you may prevent the command being executed. If you do this, no output is created by the core, and it is down to your module to produce any output neccessary. Note that unless you return 1, you should not destroy any structures (e.g. by using \fBServer::QuitUser\fP) otherwise when the command's handler function executes after your method returns, it will be passed an invalid pointer to the user object and crash!) 
.PP
\fBParameters:\fP
.RS 4
\fIcommand\fP The command being executed 
.br
\fIparameters\fP An array of array of characters containing the parameters for the command 
.br
\fIpcnt\fP The nuimber of parameters passed to the command 
.br
\fIuser\fP the user issuing the command 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to block the command, 0 to allow
.RE
.PP

.PP
Definition at line 337 of file modules.cpp.
.PP
.nf
337 { return 0; };
.fi
.PP
.SS "int Module::OnRawMode (\fBuserrec\fP * user, \fBchanrec\fP * chan, char mode, \fBstd::string\fP param, bool adding, int pcnt)\fC [virtual]\fP"
.PP
Called whenever a mode character is processed. 
.PP
Return 1 from this function to block the mode character from being processed entirely, so that you may perform your own code instead. Note that this method allows you to override modes defined by other modes, but this is NOT RECOMMENDED! 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is sending the mode 
.br
\fIchan\fP The channel the mode is being sent to 
.br
\fImode\fP The mode character being set 
.br
\fIparam\fP The parameter for the mode or an empty string 
.br
\fIadding\fP true of the mode is being added, false if it is being removed 
.br
\fIpcnt\fP The parameter count for the mode (0 or 1) 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to deny the mode, 0 to allow
.RE
.PP

.PP
Definition at line 342 of file modules.cpp.
.PP
.nf
342 { return 0; };
.fi
.PP
.SS "void Module::OnRawSocketAccept (int fd, \fBstd::string\fP ip, int localport)\fC [virtual]\fP"
.PP
Called immediately after any connection is accepted. 
.PP
This is intended for raw socket processing (e.g. modules which wrap the tcp connection within another library) and provides no information relating to a user record as the connection has not been assigned yet. There are no return values from this call as all modules get an opportunity if required to process the connection. 
.PP
\fBParameters:\fP
.RS 4
\fIfd\fP The file descriptor returned from accept() 
.br
\fIip\fP The IP address of the connecting user 
.br
\fIlocalport\fP The local port number the user connected to
.RE
.PP

.PP
Definition at line 358 of file modules.cpp.
.PP
.nf
358 { };
.fi
.PP
.SS "void Module::OnRawSocketClose (int fd)\fC [virtual]\fP"
.PP
Called immediately before any socket is closed. 
.PP
When this event is called, shutdown() has not yet been called on the socket. 
.PP
\fBParameters:\fP
.RS 4
\fIfd\fP The file descriptor of the socket prior to close()
.RE
.PP

.PP
Definition at line 360 of file modules.cpp.
.PP
.nf
360 { };
.fi
.PP
.SS "int Module::OnRawSocketRead (int fd, char * buffer, unsigned int count, int & readresult)\fC [virtual]\fP"
.PP
Called immediately before any read() operation on a client socket in the core. 
.PP
This occurs AFTER the select() or poll() so there is always data waiting to be read when this event occurs. Your event should return 1 if it has handled the reading itself, which prevents the core just using read(). You should place any data read into buffer, up to but NOT GREATER THAN the value of count. The value of readresult must be identical to an actual result that might be returned from the read() system call, for example, number of bytes read upon success, 0 upon EOF or closed socket, and -1 for error. If your function returns a nonzero value, you MUST set readresult. 
.PP
\fBParameters:\fP
.RS 4
\fIfd\fP The file descriptor of the socket 
.br
\fIbuffer\fP A char* buffer being read to 
.br
\fIcount\fP The size of the buffer 
.br
\fIreadresult\fP The amount of characters read, or 0 
.RE
.PP
\fBReturns:\fP
.RS 4
nonzero if the event was handled, in which case readresult must be valid on exit
.RE
.PP

.PP
Definition at line 361 of file modules.cpp.
.PP
.nf
361 { return 0; };
.fi
.PP
.SS "int Module::OnRawSocketWrite (int fd, char * buffer, int count)\fC [virtual]\fP"
.PP
Called immediately before any write() operation on a user's socket in the core. 
.PP
Because this event is a low level event no user information is associated with it. It is intended for use by modules which may wrap connections within another API such as SSL for example. return a non-zero result if you have handled the write operation, in which case the core will not call write(). 
.PP
\fBParameters:\fP
.RS 4
\fIfd\fP The file descriptor of the socket 
.br
\fIbuffer\fP A char* buffer being written 
.br
\fINumber\fP of characters to write 
.RE
.PP
\fBReturns:\fP
.RS 4
Number of characters actually written or 0 if you didn't handle the operation
.RE
.PP

.PP
Definition at line 359 of file modules.cpp.
.PP
.nf
359 { return 0; };
.fi
.PP
.SS "void Module::OnRehash (\fBstd::string\fP parameter)\fC [virtual]\fP"
.PP
Called on rehash. 
.PP
This method is called prior to a /REHASH or when a SIGHUP is received from the operating system. You should use it to reload any files so that your module keeps in step with the rest of the application. If a parameter is given, the core has done nothing. The module receiving the event can decide if this parameter has any relevence to it. 
.PP
\fBParameters:\fP
.RS 4
\fIparameter\fP The (optional) parameter given to REHASH from the user.
.RE
.PP

.PP
Definition at line 316 of file modules.cpp.
.PP
.nf
316 { }
.fi
.PP
.SS "void Module::OnRemoteKill (\fBuserrec\fP * source, \fBuserrec\fP * dest, \fBstd::string\fP reason)\fC [virtual]\fP"
.PP
Called when an oper wants to disconnect a remote user via KILL. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user sending the KILL 
.br
\fIdest\fP The user being killed 
.br
\fIreason\fP The kill reason
.RE
.PP

.PP
Definition at line 364 of file modules.cpp.
.PP
.nf
364 { };
.fi
.PP
.SS "char * Module::OnRequest (\fBRequest\fP * request)\fC [virtual]\fP"
.PP
Called whenever a \fBRequest\fP class is sent to your module by another module. 
.PP
Please see the documentation of \fBRequest::Send()\fP for further information. The \fBRequest\fP sent can always be assumed to be non-NULL, you should not change the request object or its data. Your method may return arbitary data in the char* result which the requesting module may be able to use for pre-determined purposes (e.g. the results of an SQL query, etc). 
.PP
\fBParameters:\fP
.RS 4
\fIrequest\fP The \fBRequest\fP class being received
.RE
.PP

.PP
Definition at line 352 of file modules.cpp.
.PP
Referenced by Request::Send().
.PP
.nf
352 { return NULL; };
.fi
.PP
.SS "void Module::OnSendList (\fBuserrec\fP * user, \fBchanrec\fP * channel, char mode)\fC [virtual]\fP"
.PP
Called whenever a list is needed for a listmode. 
.PP
For example, when a /MODE channel +b (without any other parameters) is called, if a module was handling +b this function would be called. The function can then output any lists it wishes to. Please note that all modules will see all mode characters to provide the ability to extend each other, so please only output a list if the mode character given matches the one(s) you want to handle. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user requesting the list 
.br
\fIchannel\fP The channel the list is for 
.br
\fImode\fP The listmode which a list is being requested on
.RE
.PP

.PP
Definition at line 336 of file modules.cpp.
.PP
.nf
336 { };
.fi
.PP
.SS "void Module::OnServerRaw (\fBstd::string\fP & raw, bool inbound, \fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called when a raw command is transmitted or received. 
.PP
This method is the lowest level of handler available to a module. It will be called with raw data which is passing through a connected socket. If you wish, you may munge this data by changing the string parameter 'raw'. If you do this, after your function exits it will immediately be cut down to 510 characters plus a carriage return and linefeed. For INBOUND messages only (where inbound is set to true) the value of user will be the userrec of the connection sending the data. This is not possible for outbound data because the data may be being routed to multiple targets. 
.PP
\fBParameters:\fP
.RS 4
\fIraw\fP The raw string in RFC1459 format 
.br
\fIinbound\fP A flag to indicate wether the data is coming into the daemon or going out to the user 
.br
\fIuser\fP The user record sending the text, when inbound == true.
.RE
.PP

.PP
Definition at line 317 of file modules.cpp.
.PP
.nf
317 { }
.fi
.PP
.SS "void Module::OnStats (char symbol)\fC [virtual]\fP"
.PP
Called on all /STATS commands This method is triggered for all /STATS use, including stats symbols handled by the core. 
.PP
\fBParameters:\fP
.RS 4
\fIsymbol\fP the symbol provided to /STATS
.RE
.PP

.PP
Definition at line 347 of file modules.cpp.
.PP
.nf
347 { };
.fi
.PP
.SS "void Module::OnSyncChannel (\fBchanrec\fP * chan, \fBModule\fP * proto, void * opaque)\fC [virtual]\fP"
.PP
Allows modules to synchronize data which relates to channels during a netburst. 
.PP
When this function is called, it will be called from the module which implements the linking protocol. This currently is m_spanningtree.so. A pointer to this module is given in Module* proto, so that you may call its methods such as ProtoSendMode (see below). This function will be called for every user visible on your side of the burst, allowing you to for example set modes, etc. Do not use this call to synchronize data which you have stored using class \fBExtensible\fP -- There is a specialist function OnSyncUserMetaData and OnSyncChannelMetaData for this!
.PP
For a good example of how to use this function, please see src/modules/m_chanprotect.cpp
.PP
\fBParameters:\fP
.RS 4
\fIchan\fP The channel being syncronized 
.br
\fIproto\fP A pointer to the module handling network protocol 
.br
\fIopaque\fP An opaque pointer set by the protocol module, should not be modified!
.RE
.PP

.PP
Definition at line 369 of file modules.cpp.
.PP
.nf
369 { };
.fi
.PP
.SS "void Module::OnSyncChannelMetaData (\fBchanrec\fP * chan, \fBModule\fP * proto, void * opaque, \fBstd::string\fP extname)\fC [virtual]\fP"
.PP
Definition at line 371 of file modules.cpp.
.PP
.nf
371 { };
.fi
.PP
.SS "void Module::OnSyncUser (\fBuserrec\fP * user, \fBModule\fP * proto, void * opaque)\fC [virtual]\fP"
.PP
Allows modules to synchronize data which relates to users during a netburst. 
.PP
When this function is called, it will be called from the module which implements the linking protocol. This currently is m_spanningtree.so. A pointer to this module is given in Module* proto, so that you may call its methods such as ProtoSendMode (see below). This function will be called for every user visible on your side of the burst, allowing you to for example set modes, etc. Do not use this call to synchronize data which you have stored using class \fBExtensible\fP -- There is a specialist function OnSyncUserMetaData and OnSyncChannelMetaData for this! 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user being syncronized 
.br
\fIproto\fP A pointer to the module handling network protocol 
.br
\fIopaque\fP An opaque pointer set by the protocol module, should not be modified!
.RE
.PP

.PP
Definition at line 368 of file modules.cpp.
.PP
.nf
368 { };
.fi
.PP
.SS "void Module::OnSyncUserMetaData (\fBuserrec\fP * user, \fBModule\fP * proto, void * opaque, \fBstd::string\fP extname)\fC [virtual]\fP"
.PP
Definition at line 372 of file modules.cpp.
.PP
.nf
372 { };
.fi
.PP
.SS "void Module::OnUnloadModule (\fBModule\fP * mod, \fBstd::string\fP name)\fC [virtual]\fP"
.PP
Called whenever a module is unloaded. 
.PP
mod will contain a pointer to the module, and string will contain its name, for example m_widgets.so. This function is primary for dependency checking, your module may decide to enable some extra features if it sees that you have for example loaded 'm_killwidgets.so' with 'm_makewidgets.so'. It is highly recommended that modules do *NOT* bail if they cannot satisfy dependencies, but instead operate under reduced functionality, unless the dependency is absolutely neccessary (e.g. a module that extends the features of another module). 
.PP
\fBParameters:\fP
.RS 4
\fImod\fP Pointer to the module being unloaded (still valid) 
.br
\fIname\fP The filename of the module being unloaded
.RE
.PP

.PP
Definition at line 334 of file modules.cpp.
.PP
.nf
334 { };
.fi
.PP
.SS "void Module::OnUserConnect (\fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called when a user connects. 
.PP
The details of the connecting user are available to you in the parameter userrec *user 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is connecting
.RE
.PP

.PP
Definition at line 309 of file modules.cpp.
.PP
.nf
309 { }
.fi
.PP
.SS "void Module::OnUserDisconnect (\fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called whenever a user's socket is closed. 
.PP
The details of the exiting user are available to you in the parameter userrec *user This event is called for all users, registered or not, as a cleanup method for modules which might assign resources to user, such as dns lookups, objects and sockets. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is disconnecting
.RE
.PP

.PP
Definition at line 311 of file modules.cpp.
.PP
.nf
311 { }
.fi
.PP
.SS "void Module::OnUserInvite (\fBuserrec\fP * source, \fBuserrec\fP * dest, \fBchanrec\fP * channel)\fC [virtual]\fP"
.PP
Called after a user has been successfully invited to a channel. 
.PP
You cannot prevent the invite from occuring using this function, to do that, use OnUserPreInvite instead. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user who is issuing the INVITE 
.br
\fIdest\fP The user being invited 
.br
\fIchannel\fP The channel the user is being invited to
.RE
.PP

.PP
Definition at line 365 of file modules.cpp.
.PP
.nf
365 { };
.fi
.PP
.SS "void Module::OnUserJoin (\fBuserrec\fP * user, \fBchanrec\fP * channel)\fC [virtual]\fP"
.PP
Called when a user joins a channel. 
.PP
The details of the joining user are available to you in the parameter userrec *user, and the details of the channel they have joined is available in the variable chanrec *channel 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is joining 
.br
\fIchannel\fP The channel being joined
.RE
.PP

.PP
Definition at line 312 of file modules.cpp.
.PP
.nf
312 { }
.fi
.PP
.SS "void Module::OnUserKick (\fBuserrec\fP * source, \fBuserrec\fP * user, \fBchanrec\fP * chan, \fBstd::string\fP reason)\fC [virtual]\fP"
.PP
Called whenever a user is kicked. 
.PP
If this method is called, the kick is already underway and cannot be prevented, so to prevent a kick, please use \fBModule::OnUserPreKick\fP instead of this method. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user issuing the kick 
.br
\fIuser\fP The user being kicked 
.br
\fIchan\fP The channel the user is being kicked from 
.br
\fIreason\fP The kick reason
.RE
.PP

.PP
Definition at line 341 of file modules.cpp.
.PP
.nf
341 { };
.fi
.PP
.SS "void Module::OnUserMessage (\fBuserrec\fP * user, void * dest, int target_type, \fBstd::string\fP text)\fC [virtual]\fP"
.PP
Called after any PRIVMSG sent from a user. 
.PP
The dest variable contains a userrec* if target_type is TYPE_USER and a chanrec* if target_type is TYPE_CHANNEL. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user sending the message 
.br
\fIdest\fP The target of the message 
.br
\fItarget_type\fP The type of target (TYPE_USER or TYPE_CHANNEL) 
.br
\fItext\fP the text being sent by the user
.RE
.PP

.PP
Definition at line 362 of file modules.cpp.
.PP
.nf
362 { };
.fi
.PP
.SS "void Module::OnUserNotice (\fBuserrec\fP * user, void * dest, int target_type, \fBstd::string\fP text)\fC [virtual]\fP"
.PP
Called after any NOTICE sent from a user. 
.PP
The dest variable contains a userrec* if target_type is TYPE_USER and a chanrec* if target_type is TYPE_CHANNEL. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user sending the message 
.br
\fIdest\fP The target of the message 
.br
\fItarget_type\fP The type of target (TYPE_USER or TYPE_CHANNEL) 
.br
\fItext\fP the text being sent by the user
.RE
.PP

.PP
Definition at line 363 of file modules.cpp.
.PP
.nf
363 { };
.fi
.PP
.SS "void Module::OnUserPart (\fBuserrec\fP * user, \fBchanrec\fP * channel)\fC [virtual]\fP"
.PP
Called when a user parts a channel. 
.PP
The details of the leaving user are available to you in the parameter userrec *user, and the details of the channel they have left is available in the variable chanrec *channel 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is parting 
.br
\fIchannel\fP The channel being parted
.RE
.PP

.PP
Definition at line 313 of file modules.cpp.
.PP
.nf
313 { }
.fi
.PP
.SS "void Module::OnUserPostNick (\fBuserrec\fP * user, \fBstd::string\fP oldnick)\fC [virtual]\fP"
.PP
Called after any nickchange, local or remote. 
.PP
This can be used to track users after nickchanges have been applied. Please note that although you can see remote nickchanges through this function, you should NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc. check user->server before taking any action (including returning nonzero from the method). Because this method is called after the nickchange is taken place, no return values are possible to indicate forbidding of the nick change. Use OnUserPreNick for this. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user changing their nick 
.br
\fIoldnick\fP The old nickname of the user before the nickchange
.RE
.PP

.PP
Definition at line 329 of file modules.cpp.
.PP
.nf
329 { };
.fi
.PP
.SS "int Module::OnUserPreInvite (\fBuserrec\fP * source, \fBuserrec\fP * dest, \fBchanrec\fP * channel)\fC [virtual]\fP"
.PP
Called whenever a user is about to invite another user into a channel, before any processing is done. 
.PP
Returning 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter invites to channels. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user who is issuing the INVITE 
.br
\fIdest\fP The user being invited 
.br
\fIchannel\fP The channel the user is being invited to 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to deny the invite, 0 to allow
.RE
.PP

.PP
Definition at line 325 of file modules.cpp.
.PP
.nf
325 { return 0; };
.fi
.PP
.SS "int Module::OnUserPreJoin (\fBuserrec\fP * user, \fBchanrec\fP * chan, const char * cname)\fC [virtual]\fP"
.PP
Called whenever a user is about to join a channel, before any processing is done. 
.PP
Returning a value of 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to mimic +b, +k, +l etc. Returning -1 from this function forces the join to be allowed, bypassing restrictions such as banlists, invite, keys etc.
.PP
IMPORTANT NOTE!
.PP
If the user joins a NEW channel which does not exist yet, OnUserPreJoin will be called BEFORE the channel record is created. This will cause chanrec* chan to be NULL. There is very little you can do in form of processing on the actual channel record at this point, however the channel NAME will still be passed in char* cname, so that you could for example implement a channel blacklist or whitelist, etc. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user joining the channel 
.br
\fIcname\fP The channel name being joined 
.RE
.PP
\fBReturns:\fP
.RS 4
1 To prevent the join, 0 to allow it.
.RE
.PP

.PP
Definition at line 318 of file modules.cpp.
.PP
.nf
318 { return 0; }
.fi
.PP
.SS "int Module::OnUserPreKick (\fBuserrec\fP * source, \fBuserrec\fP * user, \fBchanrec\fP * chan, \fBstd::string\fP reason)\fC [virtual]\fP"
.PP
Called whenever a user is about to be kicked. 
.PP
Returning a value of 1 from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user issuing the kick 
.br
\fIuser\fP The user being kicked 
.br
\fIchan\fP The channel the user is being kicked from 
.br
\fIreason\fP The kick reason 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to prevent the kick, 0 to allow it
.RE
.PP

.PP
Definition at line 340 of file modules.cpp.
.PP
.nf
340 { return 0; };
.fi
.PP
.SS "int Module::OnUserPreMessage (\fBuserrec\fP * user, void * dest, int target_type, \fBstd::string\fP & text)\fC [virtual]\fP"
.PP
Called whenever a user is about to PRIVMSG A user or a channel, before any processing is done. 
.PP
Returning any nonzero value from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter or redirect messages. target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user, you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details of where the message is destined to be sent. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user sending the message 
.br
\fIdest\fP The target of the message (chanrec* or userrec*) 
.br
\fItarget_type\fP The type of target (TYPE_USER or TYPE_CHANNEL) 
.br
\fItext\fP Changeable text being sent by the user 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to deny the NOTICE, 0 to allow it
.RE
.PP

.PP
Definition at line 326 of file modules.cpp.
.PP
.nf
326 { return 0; };
.fi
.PP
.SS "int Module::OnUserPreNick (\fBuserrec\fP * user, \fBstd::string\fP newnick)\fC [virtual]\fP"
.PP
Called before any nickchange, local or remote. 
.PP
This can be used to implement Q-lines etc. Please note that although you can see remote nickchanges through this function, you should NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc. check user->server before taking any action (including returning nonzero from the method). If your method returns nonzero, the nickchange is silently forbidden, and it is down to your module to generate some meaninful output. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The username changing their nick 
.br
\fInewnick\fP Their new nickname 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to deny the change, 0 to allow
.RE
.PP

.PP
Definition at line 328 of file modules.cpp.
.PP
.nf
328 { return 0; };
.fi
.PP
.SS "int Module::OnUserPreNotice (\fBuserrec\fP * user, void * dest, int target_type, \fBstd::string\fP & text)\fC [virtual]\fP"
.PP
Called whenever a user is about to NOTICE A user or a channel, before any processing is done. 
.PP
Returning any nonzero value from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter or redirect messages. target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user, you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details of where the message is destined to be sent. You may alter the message text as you wish before relinquishing control to the next module in the chain, and if no other modules block the text this altered form of the text will be sent out to the user and possibly to other servers. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user sending the message 
.br
\fIdest\fP The target of the message (chanrec* or userrec*) 
.br
\fItarget_type\fP The type of target (TYPE_USER or TYPE_CHANNEL) 
.br
\fItext\fP Changeable text being sent by the user 
.RE
.PP
\fBReturns:\fP
.RS 4
1 to deny the NOTICE, 0 to allow it
.RE
.PP

.PP
Definition at line 327 of file modules.cpp.
.PP
.nf
327 { return 0; };
.fi
.PP
.SS "void Module::OnUserQuit (\fBuserrec\fP * user, \fBstd::string\fP message)\fC [virtual]\fP"
.PP
Called when a user quits. 
.PP
The details of the exiting user are available to you in the parameter userrec *user This event is only called when the user is fully registered when they quit. To catch raw disconnections, use the OnUserDisconnect method. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user who is quitting 
.br
\fImessage\fP The user's quit message
.RE
.PP

.PP
Definition at line 310 of file modules.cpp.
.PP
.nf
310 { }
.fi
.PP
.SS "void Module::OnUserRegister (\fBuserrec\fP * user)\fC [virtual]\fP"
.PP
Called whenever a user is about to register their connection (e.g. 
.PP
before the user is sent the MOTD etc). Modules can use this method if they are performing a function which must be done before the actual connection is completed (e.g. ident lookups, dnsbl lookups, etc). Note that you should NOT delete the user record here by causing a disconnection! Use OnUserConnect for that instead. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user registering
.RE
.PP

.PP
Definition at line 339 of file modules.cpp.
.PP
.nf
339 { };
.fi
.PP
.SS "void Module::OnWallops (\fBuserrec\fP * user, \fBstd::string\fP text)\fC [virtual]\fP"
.PP
Called after every WALLOPS command. 
.PP
\fBParameters:\fP
.RS 4
\fIuser\fP The user sending the WALLOPS 
.br
\fItext\fP The content of the WALLOPS message
.RE
.PP

.PP
Definition at line 375 of file modules.cpp.
.PP
.nf
375 { };
.fi
.PP
.SS "void Module::OnWhois (\fBuserrec\fP * source, \fBuserrec\fP * dest)\fC [virtual]\fP"
.PP
Called whenever a /WHOIS is performed on a local user. 
.PP
The source parameter contains the details of the user who issued the WHOIS command, and the dest parameter contains the information of the user they are whoising. 
.PP
\fBParameters:\fP
.RS 4
\fIsource\fP The user issuing the WHOIS command 
.br
\fIdest\fP The user who is being WHOISed
.RE
.PP

.PP
Definition at line 324 of file modules.cpp.
.PP
.nf
324 { };
.fi
.PP
.SS "void Module::ProtoSendMetaData (void * opaque, int target_type, void * target, \fBstd::string\fP extname, \fBstd::string\fP extdata)\fC [virtual]\fP"
.PP
Implemented by modules which provide the ability to link servers. 
.PP
These modules will implement this method, which allows metadata (extra data added to user and channel records using class \fBExtensible\fP, \fBExtensible::Extend\fP, etc) to be sent to other servers on a netburst and decoded at the other end by the same module on a different server.
.PP
More documentation to follow soon. Please see src/modules/m_swhois.cpp for example of how to use this function. 
.PP
\fBParameters:\fP
.RS 4
\fIopaque\fP An opaque pointer set by the protocol module, should not be modified! 
.br
\fItarget_type\fP The type of item to decode data for, TYPE_USER or TYPE_CHANNEL 
.br
\fItarget\fP The chanrec* or userrec* that metadata should be sent for 
.br
\fIextname\fP The extension name to send metadata for 
.br
\fIextdata\fP Encoded data for this extension name, which will be encoded at the oppsite end by an identical module using OnDecodeMetaData
.RE
.PP

.PP
Definition at line 374 of file modules.cpp.
.PP
.nf
374 { };
.fi
.PP
.SS "void Module::ProtoSendMode (void * opaque, int target_type, void * target, \fBstd::string\fP modeline)\fC [virtual]\fP"
.PP
Implemented by modules which provide the ability to link servers. 
.PP
These modules will implement this method, which allows transparent sending of servermodes down the network link as a broadcast, without a module calling it having to know the format of the MODE command before the actual mode string.
.PP
More documentation to follow soon. Please see src/modules/m_chanprotect.cpp for examples of how to use this function.
.PP
\fBParameters:\fP
.RS 4
\fIopaque\fP An opaque pointer set by the protocol module, should not be modified! 
.br
\fItarget_type\fP The type of item to decode data for, TYPE_USER or TYPE_CHANNEL 
.br
\fItarget\fP The chanrec* or userrec* that modes should be sent for 
.br
\fImodeline\fP The modes and parameters to be sent
.RE
.PP

.PP
Definition at line 370 of file modules.cpp.
.PP
.nf
370 { };
.fi
.PP


.SH "Author"
.PP 
Generated automatically by Doxygen for InspIRCd from the source code.