-
Notifications
You must be signed in to change notification settings - Fork 24
/
ChangeLog.nefarious
3802 lines (2058 loc) · 103 KB
/
ChangeLog.nefarious
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
/***********************************************************************
Nefarious IRCu ChangeLog
2013-12-12 Matthew Beeching <[email protected]>
* doc/example.conf: Typo in features block list.
2013-12-09 Matthew Beeching <[email protected]>
* doc/example.conf: Added Features for IRCOPS command.
* doc/readme.features: Added Features for IRCOPS command.
* include/handlers.h: Added IRCOPS command.
* include/ircd_features.h: Added Features for IRCOPS command.
* include/msg.h: Added IRCOPS command.
* include/numeric.h: Added numeric replies for IRCOPS command.
* ircd/Makefile.in: Added IRCOPS command.
* ircd/ircd_features.c: Added Features for IRCOPS command.
* ircd/parse.c: Added IRCOPS command.
* ircd/s_err.c: Added numeric replies for IRCOPS command.
* ircd/m_ircops.c: Added IRCOPS command.
2013-12-09 Matthew Beeching <[email protected]>
* doc/example.conf: Updated example.conf with the correct default
value for MAXBANS.
2013-12-08 Matthew Beeching <[email protected]>
* ircd/m_cap.c: Added a few changes to ensure cli_auth is set
before we call auth_cap_* functions.
2013-12-05 Matthew Beeching <[email protected]>
* include/client.h: Added a client flag to indicate a need to
call SSL_accept again.
* ircd/s_bsd.c: Added checks for the need SSL_accept client flag
to call SSL_accept.
* ircd/ssl.c: Rewrote and merged ssl_accept() and ssl_starttls().
2013-12-05 Matthew Beeching <[email protected]>
* ircd/s_bsd.c: Hopefully that'll fix Rubin's crash.
2013-12-05 Matthew Beeching <[email protected]>
* ircd/s_bsd.c: Attempt to fix STARTTLS connection issues.
2013-12-04 Matthew Beeching <[email protected]>
* include/ssl.h: Added better handling for SSL_accept() errors.
* ircd/s_bsd.c: Added better handling for SSL_accept() errors.
* ircd/ssl.c: Added better handling for SSL_accept() errors.
2013-12-03 Matthew Beeching <[email protected]>
* configure: Re-ran autoconf.
* configure.in: Added a couple extra lines to fix OpenSSL detection.
2013-12-02 Matthew Beeching <[email protected]>
* doc/example.conf: Added class block restrict_* options.
* include/class.h: Added class block restrict_* options.
* include/client.h: Added class block restrict_* options.
* ircd/ircd_lexer.l: Added class block restrict_* options.
* ircd/ircd_parser.y: Added class block restrict_* options.
* ircd/ircd_relay.c: Added class block restrict_privmsg option.
* ircd/m_join.c: Added class block restrict_join option.
* ircd/m_mode.c: Added class block restrict_umode option.
* ircd/s_user.c: Added class block restrict_* options.
2013-11-04 Matthew Beeching <[email protected]>
* ircd/m_burst.c: Fix for bug where extended bans were not working
when added via BURST.
2013-11-02 Matthew Beeching <[email protected]>
* ircd/m_burst.c: Fixed crash bug when linking with Nefarious 1
when an invalid extended ban is present on a channel.
2013-11-02 Matthew Beeching <[email protected]>
* doc/example.conf: Added extended bans ~m and ~M for marks.
* doc/readme.features: Added extended bans ~m and ~M for marks.
* include/channel.h: Added extended bans ~m and ~M for marks.
* include/client.h: Renamed DNSBL_DATA to MARK.
* include/ircd_features.h: Added extended bans ~m and ~M for marks.
* include/mark.h: Renamed DNSBL_DATA to MARK.
* include/numeric.h: Renamed DNSBL_DATA to MARK.
* include/s_conf.h: Renamed DNSBL_DATA to MARK.
* ircd/channel.c: Added extended bans ~m and ~M for marks.
* ircd/ircd_features.c: Added extended bans ~m and ~M for marks.
* ircd/m_mark.c: Renamed DNSBL_DATA to MARK.
* ircd/m_whois.c: Renamed DNSBL_DATA to MARK.
* ircd/s_auth.c: Renamed DNSBL_DATA to MARK.
* ircd/s_conf.c: Renamed DNSBL_DATA to MARK.
* ircd/s_err.c: Renamed DNSBL_DATA to MARK.
* ircd/s_misc.c: Renamed DNSBL_DATA to MARK.
* ircd/s_serv.c: Renamed DNSBL_DATA to MARK.
* ircd/s_user.c: Renamed DNSBL_DATA to MARK.
2013-11-01 Matthew Beeching <[email protected]>
* include/channel.h: Removed the unnecesary prefix member of the
ExtBan struct.
* ircd/channel.c: Removed the unnecesary prefix member of the
ExtBan struct.
* ChangeLog.nefarious: Fixed incorrect date in previous commit.
2013-11-01 Matthew Beeching <[email protected]>
* doc/example.conf: Changed SASL_TIMEOUT default value.
* doc/readme.features: Changed SASL_TIMEOUT default value.
* ircd/ircd_features.c: Changed SASL_TIMEOUT default value.
2013-10-31 Matthew Beeching <[email protected]>
* include/ircd_defs.h: Added #define for extended ban prefix.
* ircd/channel.c: Added #define for extended ban prefix.
* ircd/ircd_features.c: Added callback to update EXTBANS in RPL_ISUPPORT.
2013-10-31 Matthew Beeching <[email protected]>
* include/channel.h: Changed the way we handle extended ban controls.
* ircd/channel.c: Changed the way we handle extended ban controls.
* ircd/m_burst.c: Changed the way we handle extended ban controls.
2013-10-31 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_EXTBAN_j_MAXPERCHAN feature.
* doc/readme.features: Added FEAT_EXTBAN_j_MAXPERCHAN feature.
* include/ircd_features.h: Added FEAT_EXTBAN_j_MAXPERCHAN feature.
* ircd/channel.c: Added FEAT_EXTBAN_j_MAXPERCHAN feature.
* ircd/ircd_features.c: Added FEAT_EXTBAN_j_MAXPERCHAN feature.
2013-10-30 Matthew Beeching <[email protected]>
* ircd/channel.c: Fixed a bug where FEAT_AUTOCHANMODES_LIST
ignored extended channel modes.
2013-10-30 Matthew Beeching <[email protected]>
* doc/example.conf: Added extended ban FEAT_*'s.
* doc/readme.features: Added extended ban FEAT_*'s.
* include/channel.h: Added extended ban types a, c, j, n, q and r.
* include/ircd_features.h: Added extended ban FEAT_*'s.
* ircd/channel.c: Added extended ban types a, c, j, n, q and r.
* ircd/ircd_features.c: Added extended ban FEAT_*'s.
* ircd/m_burst.c: Added extended ban types a, c, j, n, q and r.
* ircd/m_clearmode.c: Added extended ban types a, c, j, n, q and r.
* ircd/m_join.c: Added extended ban types a, c, j, n, q and r.
* ircd/s_user.c: Added extended ban types a, c, j, n, q and r.
2013-10-29 Matthew Beeching <[email protected]>
* doc/example.conf: Added Kill block mark and authexempt options.
* include/client.h: Added MARK_KILL.
* include/mark.h: Added MARK_KILL.
* include/numeric.h: Added RPL_WHOISKILL numeric reply.
* include/s_conf.h: Added Kill block mark and authexempt options.
* ircd/ircd_lexer.l: Added Kill block mark and authexempt options.
* ircd/ircd_parser.y: Added Kill block mark and authexempt options.
* ircd/m_check.c: Added MARK_KILL.
* ircd/m_mark.c: Added MARK_KILL.
* ircd/m_whois.c: Added MARK_KILL.
* ircd/s_auth.c: Added MARK_KILL.
* ircd/s_conf.c: Added Kill block mark and authexempt options.
* ircd/s_err.c: Added RPL_WHOISKILL numeric reply.
* ircd/s_serv.c: Added MARK_KILL.
* ircd/s_user.c: Added MARK_KILL.
2013-10-29 Matthew Beeching <[email protected]>
* include/client.h: Added user mode +L (no channel redirection).
* ircd/m_join.c: Added user mode +L (no channel redirection).
* ircd/s_user.c: Added user mode +L (no channel redirection).
2013-10-29 Matthew Beeching <[email protected]>
* ircd/ircd_features.c: Once again missed adding channel mode
+L to a channel modes list.
2013-10-29 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_CHMODE_L and FEAT_MAX_BOUNCE.
* doc/readme.features: Added FEAT_CHMODE_L and FEAT_MAX_BOUNCE.
* include/channel.h: Added channel mode +L (channel redirection).
* include/ircd_features.h: Added FEAT_CHMODE_L and FEAT_MAX_BOUNCE.
* include/numeric.h: Added ERR_LINKSET, ERR_LINKCHAN and ERR_LINKSELF.
* ircd/channel.c: Added channel mode +L (channel redirection).
* ircd/ircd_features.c: Added FEAT_CHMODE_L and FEAT_MAX_BOUNCE.
* ircd/m_join.c: Added channel mode +L (channel redirection).
* ircd/s_err.c: Added ERR_LINKSET, ERR_LINKCHAN and ERR_LINKSELF.
* ircd/s_user.c: Added channel mode +L (channel redirection).
2013-10-28 Matthew Beeching <[email protected]>
* ircd/s_bsd.c: A few minor changes to SSL connection handling.
* ircd/ssl.c: Fix for a crash when ssl_abort() is called again.
2013-10-25 Matthew Beeching <[email protected]>
* ircd/channel.c: Only apply FEAT_CHMODE_Z_STRICT to mode changes
sent by local clients.
2013-10-25 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_CHMODE_Z_STRICT feature.
* doc/readme.features: Added FEAT_CHMODE_Z_STRICT feature.
* include/channel.h: Added counter to count non-SSL users.
* include/ircd_features.h: Added FEAT_CHMODE_Z_STRICT feature.
* include/numeric.h: Added ERR_CANNOTCHANGECHANMODE numeric reply.
* ircd/channel.c: Added stricter +Z set handling when feature enabled.
* ircd/ircd_features.c: Added FEAT_CHMODE_Z_STRICT feature.
* ircd/m_join.c: Added stricter +Z handling when feature enabled.
* ircd/s_err.c: Added ERR_CANNOTCHANGECHANMODE numeric reply.
2013-10-24 Matthew Beeching <[email protected]>
* Ported ircu changes up to revision ac43a9ca643546041560c7386b7c34d28d57ee4e
* Files Modified: .hgignore ircd/.hgignore ircd/engine_devpoll.c
ircd/engine_epoll.c ircd/engine_kqueue.c ircd/ircd.c ircd/s_auth.c
2013-10-24 Matthew Beeching <[email protected]>
* ircd/ssl.c: Removed struct definition for an unused structure.
2013-10-24 Matthew Beeching <[email protected]>
* include/ssl.h: Added prototypes for ssl_accept() and ssl_abort().
* ircd/s_bsd.c: Moved SSL callback operations to
client_sock_callback().
* ircd/ssl.c: Rewrote incoming SSL connection handling.
2013-10-24 Matthew Beeching <[email protected]>
* ircd/m_cap.c: Fixed a few compiler warnings.
* ircd/m_remove.c: Fixed a few compiler warnings.
* ircd/m_server.c: Fixed a few compiler warnings.
2013-10-20 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_NOMULTITARGETS feature.
* doc/readme.features: Added FEAT_NOMULTITARGETS feature.
* include/ircd_features.h: Added FEAT_NOMULTITARGETS feature.
* ircd/ircd_features.c: Added FEAT_NOMULTITARGETS feature.
* ircd/ircd_relay.c: Added FEAT_NOMULTITARGETS feature.
2013-07-03 Matthew Beeching <[email protected]>
* doc/example.conf: Added auto join options to Class, Client and
Operator blocks.
* include/class.h: Added auto join options to Class, Client and
Operator blocks.
* include/s_conf.h: Added auto join options to Class, Client and
Operator blocks.
* ircd/Makefile.in: Added auto join options to Class, Client and
Operator blocks.
* ircd/class.c: Added auto join options to Class, Client and
Operator blocks.
* ircd/ircd_lexer.l: Added auto join options to Class, Client and
Operator blocks.
* ircd/ircd_parser.y: Added auto join options to Class, Client and
Operator blocks.
* ircd/m_oper.c: Added auto join options to Class, Client and
Operator blocks.
* ircd/s_conf.c: Added auto join options to Class, Client and
Operator blocks.
* ircd/s_user.c: Added auto join options to Class, Client and
Operator blocks.
2013-07-02 Matthew Beeching <[email protected]>
* ircd/ssl.c: Updated ssl_get_verify_result() to be more portable.
2013-07-02 Matthew Beeching <[email protected]>
* ircd/m_starttls.c: Forgot to make sure STARTTLS clients got
their client certificate fingerprint.
* ircd/s_bsd.c: Forgot to make sure STARTTLS clients got their
client certificate fingerprint.
2013-07-02 Matthew Beeching <[email protected]>
* doc/example.conf: Added some SSL client certificate verification
options.
* doc/readme.features: Added some SSL client certificate verification
options.
* include/ircd_features.h: Added some SSL client certificate verification
options.
* include/ssl.h: Added some SSL client certificate verification
options.
* ircd/ircd_features.c: Added some SSL client certificate verification
options.
* ircd/s_user.c: Added some SSL client certificate verification
options.
* ircd/ssl.c: Added some SSL client certificate verification
options.
2013-06-29 Matthew Beeching <[email protected]>
* ircd/s_conf.c: Forgot to free() a few ConfItem members.
2013-06-29 Matthew Beeching <[email protected]>
* doc/example.conf: Added a hidehostcomponants Client block option.
* include/client.h: Added a hidehostcomponants Client block option.
* include/ircd_cloaking.h: Added a hidehostcomponants Client block
option.
* include/s_conf.h: Added a hidehostcomponants Client block option.
* ircd/client.c: Added a hidehostcomponants Client block option.
* ircd/ircd_cloaking.c: Added a hidehostcomponants Client block option.
* ircd/ircd_lexer.l: Added a hidehostcomponants Client block option.
* ircd/ircd_parser.y: Added a hidehostcomponants Client block option.
* ircd/s_user.c: Added a hidehostcomponants Client block option.
2013-06-29 Matthew Beeching <[email protected]>
* ircd/ircd_cloaking.c: Changed the way IP addresses are cloaked.
2013-06-28 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_SASL_TIMEOUT feature.
* doc/readme.features: Added FEAT_SASL_TIMEOUT feature.
* include/client.h: Added an SASL authentication timeout.
* include/ircd_features.h: Added FEAT_SASL_TIMEOUT feature.
* include/s_user.h: Added an SASL authentication timeout.
* ircd/Makefile.in: Added an SASL authentication timeout.
* ircd/ircd_features.c: Added FEAT_SASL_TIMEOUT feature.
* ircd/m_authenticate.c: Added an SASL authentication timeout
and support for initial SASL request broadcast to all servers.
* ircd/m_sasl.c: Added an SASL authentication timeout and
support for initial SASL request broadcast to all servers.
* ircd/s_auth.c: Added an SASL authentication timeout.
* ircd/s_misc.c: Added an SASL authentication timeout.
* ircd/s_user.c: Fixed a bug in (un)hide_hostmask().
2013-06-27 Matthew Beeching <[email protected]>
* doc/example.conf: Added Client block redirect option.
* include/numeric.h: Added RPL_BOUNCE numeric.
* include/s_conf.h: Added Client block redirect option.
* ircd/ircd_lexer.l: Added Client block redirect option.
* ircd/ircd_parser.y: Added Client block redirect option.
* ircd/s_conf.c: Added Client block redirect option.
* ircd/s_err.c: Added RPL_BOUNCE numeric.
2013-06-27 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_CAP_* features.
* doc/readme.features: Added FEAT_CAP_* features.
* include/capab.h: Added FEAT_CAP_* features.
* include/ircd_features.h: Added FEAT_CAP_* features.
* ircd/Makefile.in: Added FEAT_CAP_* features.
* ircd/ircd_features.c: Added FEAT_CAP_* features.
* ircd/m_cap.c: Added FEAT_CAP_* features.
2013-06-27 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_HOST_HIDING_COMPONANTS feature.
* doc/readme.features: Added FEAT_HOST_HIDING_COMPONANTS feature.
* include/ircd_features.h: Added FEAT_HOST_HIDING_COMPONANTS feature.
* ircd/ircd_cloaking.c: Added FEAT_HOST_HIDING_COMPONANTS feature.
* ircd/ircd_features.c: Added FEAT_HOST_HIDING_COMPONANTS feature.
2013-06-27 Matthew Beeching <[email protected]>
* include/client.h: Added DNSBL_DATA mark.
* include/mark.h: Added DNSBL_DATA mark.
* include/numeric.h: Added DNSBL_DATA mark.
* include/s_conf.h: Added DNSBL_DATA mark.
* ircd/Makefile.in: Added DNSBL_DATA mark.
* ircd/m_mark.c: Added DNSBL_DATA mark.
* ircd/m_whois.c: Added DNSBL_DATA mark.
* ircd/s_auth.c: Added DNSBL_DATA mark.
* ircd/s_conf.c: Added DNSBL_DATA mark.
* ircd/s_err.c: Added DNSBL_DATA mark.
* ircd/s_misc.c: Added DNSBL_DATA mark.
* ircd/s_serv.c: Added DNSBL_DATA mark.
* ircd/s_user.c: Added DNSBL_DATA mark.
2013-06-26 Matthew Beeching <[email protected]>
* ircd/s_auth.c: Moved SASL completion code to s_auth.c
* ircd/s_user.c: Moved SASL completion code to s_auth.c
2013-06-26 Matthew Beeching <[email protected]>
* ircd/s_conf.c: Fixed memory leak when clearing denyConfList.
2013-06-24 Matthew Beeching <[email protected]>
* ircd/s_auth.c: A couple of minor changes missed when adding
ZLINE support.
* ircd/s_conf.c: A couple of minor changes missed when adding
ZLINE support.
2013-06-24 Matthew Beeching <[email protected]>
* ircd/shun.c: Missed a few instances of gl that should have been
changed to sh.
2013-06-23 Matthew Beeching <[email protected]>
* ircd/channel.c: Changed the behaviour of setting channel modes
+c or +S to remove the oposite in the same way as +p and +s.
2013-06-22 Matthew Beeching <[email protected]>
* doc/example.conf: Added a 'snomask' option to Operator blocks.
* include/s_conf.h: Added a 'snomask' option to Operator blocks.
* ircd/ircd_parser.y: Added a 'snomask' option to Operator blocks.
* ircd/m_oper.c: Added a 'snomask' option to Operator blocks.
2013-06-22 Matthew Beeching <[email protected]>
* doc/readme.shun: Added SHUN documentation.
2013-06-22 Matthew Beeching <[email protected]>
* doc/example.conf: Added ZLINE support.
* doc/readme.features: Added ZLINE support.
* include/client.h: Added ZLINE support.
* include/handlers.h: Added ZLINE support.
* include/ircd_features.h: Added ZLINE support.
* include/ircd_string.h: Added ZLINE support.
* include/msg.h: Added ZLINE support.
* include/numeric.h: Added ZLINE support.
* include/s_conf.h: Added ZLINE support.
* ircd/Makefile.in: Added ZLINE support.
* ircd/client.c: Added ZLINE support.
* ircd/ircd_features.c: Added ZLINE support.
* ircd/ircd_lexer.l: Added ZLINE support.
* ircd/ircd_parser.y: Added ZLINE support.
* ircd/ircd_string.c: Added ZLINE support.
* ircd/m_check.c: Added ZLINE support.
* ircd/m_remove.c: Added ZLINE support.
* ircd/parse.c: Added ZLINE support.
* ircd/s_bsd.c: Added ZLINE support.
* ircd/s_conf.c: Added ZLINE support.
* ircd/s_debug.c: Added ZLINE support.
* ircd/s_err.c: Added ZLINE support.
* ircd/s_serv.c: Added ZLINE support.
* ircd/s_stats.c: Added ZLINE support.
* doc/readme.zline: Added ZLINE support.
* include/zline.h: Added ZLINE support.
* ircd/m_zline.c: Added ZLINE support.
* ircd/zline.c: Added ZLINE support.
2013-06-22 Matthew Beeching <[email protected]>
* doc/example.conf: Minor changes to the Class block privileges
listing.
2013-06-21 Matthew Beeching <[email protected]>
* ircd/Makefile.in: Updated object file dependancy lists.
2013-06-21 Matthew Beeching <[email protected]>
* doc/example.conf: Added WATCH support.
* doc/readme.features: Added WATCH support.
* include/handlers.h: Added WATCH support.
* include/hash.h: Added WATCH support.
* include/ircd_features.h: Added WATCH support.
* include/list.h: Added WATCH support.
* include/msg.h: Added WATCH support.
* include/numeric.h: Added WATCH support.
* include/struct.h: Added WATCH support.
* ircd/Makefile.in: Added WATCH support.
* ircd/hash.c: Added WATCH support.
* ircd/ircd_features.c: Added WATCH support.
* ircd/ircd_parser.y: Added WATCH support.
* ircd/parse.c: Added WATCH support.
* ircd/s_debug.c: Added WATCH support.
* ircd/s_err.c: Added WATCH support.
* ircd/s_misc.c: Added WATCH support.
* ircd/s_user.c: Added WATCH support.
* include/watch.h: Added WATCH support.
* ircd/m_watch.c: Added WATCH support.
* ircd/watch.c: Added WATCH support.
2013-06-21 Matthew Beeching <[email protected]>
* patches/diffs/sline.diff: Removed.
2013-06-21 Matthew Beeching <[email protected]>
* doc/example.conf: Added Spoofhost block option 'ismask'.
* include/s_conf.h: Added Spoofhost block option 'ismask'.
* ircd/ircd_lexer.l: Added Spoofhost block option 'ismask'.
* ircd/ircd_parser.y: Added Spoofhost block option 'ismask'.
* ircd/m_sethost.c: Added Spoofhost block option 'ismask'.
* ircd/s_conf.c: Added Spoofhost block option 'ismask'.
2013-06-21 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_LIST_PRIVATE_CHANNELS feature.
* doc/readme.features: Added FEAT_LIST_PRIVATE_CHANNELS feature.
* include/ircd_features.h: Added FEAT_LIST_PRIVATE_CHANNELS feature.
* ircd/hash.c: Added an option to include +p channels in LIST
replies as per RFC 1459.
* ircd/ircd_features.c: Added FEAT_LIST_PRIVATE_CHANNELS feature.
2013-06-21 Matthew Beeching <[email protected]>
* ircd/m_account.c: Fix for bug where LOC causes incorrect host
hiding style 2 cloaked host to be stored for the user.
2013-06-21 Matthew Beeching <[email protected]>
* ircd/hash.c: Added check to list channels you're invited to
even if +p/+s.
* ircd/m_list.c: Fixed bug in syntax for oper only check for
LIST flag S.
2013-06-21 Matthew Beeching <[email protected]>
* ircd/hash.c: Added support to LIST for >= and <= operators.
* ircd/m_list.c: Added support to LIST for >= and <= operators.
2013-06-21 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_LIST_SHOWMODES_OPERONLY feature.
* doc/readme.features: Added FEAT_LIST_SHOWMODES_OPERONLY feature.
* include/ircd_features.h: Added FEAT_LIST_SHOWMODES_OPERONLY
feature.
* ircd/ircd_features.c: Added FEAT_LIST_SHOWMODES_OPERONLY feature.
* ircd/m_list.c: Added FEAT_LIST_SHOWMODES_OPERONLY feature and
fixed crash on startup/rehash if DEFAULT_LIST_PARAM contained oper
only flags.
2013-06-20 Matthew Beeching <[email protected]>
* ircd/ssl.c: Added a #define for IOV_MAX for systems that do not
have IOV_MAX defined already.
2013-06-20 Matthew Beeching <[email protected]>
* include/ircd_osdep.h: Fix for error setting IP_TOS on AF_INET6
sockets.
* ircd/listener.c: Fix for error setting IP_TOS on AF_INET6
sockets.
* ircd/os_generic.c: Fix for error setting IP_TOS on AF_INET6
sockets.
* ircd/s_bsd.c: Fix for error setting IP_TOS on AF_INET6
sockets.
2013-06-20 Matthew Beeching <[email protected]>
* doc/example.conf: Added PRIV_REMOVE for the REMOVE command.
* include/client.h: Added PRIV_REMOVE for the REMOVE command.
* include/gline.h: Added gline_remove() used by the REMOVE
command.
* include/handlers.h: Added the REMOVE command.
* include/msg.h: Added the REMOVE command.
* include/shun.h: Added shun_remove() used by the REMOVE
command.
* ircd/Makefile.in: Added the REMOVE command.
* ircd/client.c: Added PRIV_REMOVE for the REMOVE command.
* ircd/gline.c: Added gline_remove() used by the REMOVE command.
* ircd/ircd_lexer.l: Added PRIV_REMOVE for the REMOVE command.
* ircd/ircd_parser.y: Added PRIV_REMOVE for the REMOVE command.
* ircd/parse.c: Added the REMOVE command.
* ircd/s_err.c: Minor fix for STATS S.
* ircd/shun.c: Added shun_remove() used by the REMOVE command.
* ircd/m_remove.c: Added the REMOVE command.
2013-06-19 Matthew Beeching <[email protected]>
* ircd/channel.c: Added a call to schedule_destruct_event_1m()
when an empty channel is set -z.
* ircd/m_check.c: Fixed allignment of channel info.
2013-06-19 Matthew Beeching <[email protected]>
* ircd/m_authenticate.c: Added ':' prefix to SSL fingerprint.
* ircd/m_sasl.c: Forgot to account for SSL fingerprint in SASL
message.
2013-06-19 Matthew Beeching <[email protected]>
* ircd/m_authenticate.c: Added SSL client certificate fingerprint
to initial SASL message sent to services regardless of method.
2013-06-19 Matthew Beeching <[email protected]>
* doc/example.conf: Added 'noidenttilde' Client block option.
* include/s_conf.h: Added 'noidenttilde' Client block option.
* ircd/ircd_lexer.l: Added 'noidenttilde' Client block option.
* ircd/ircd_parser.y: Added 'noidenttilde' Client block option.
* ircd/s_conf.c: Added 'noidenttilde' Client block option.
2013-06-19 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_NETWORK_REHASH and PRIV_REMOTEREHASH.
* doc/readme.features: Added FEAT_NETWORK_REHASH feature.
* include/client.h: Added PRIV_REMOTEREHASH privilege.
* include/handlers.h: Added REHASH server handler.
* include/ircd_features.h: Added FEAT_NETWORK_REHASH feature.
* include/msg.h: Added REHASH server handler.
* ircd/client.c: Added PRIV_REMOTEREHASH privilege.
* ircd/ircd_features.c: Added FEAT_NETWORK_REHASH feature.
* ircd/ircd_lexer.l: Added PRIV_REMOTEREHASH privilege.
* ircd/ircd_parser.y: Added PRIV_REMOTEREHASH privilege.
* ircd/m_rehash.c: Added remote REHASH support.
* ircd/parse.c: Added REHASH server handler.
2013-06-19 Matthew Beeching <[email protected]>
* include/s_auth.h: Added auth_restart() function.
* ircd/m_rehash.c: Added REHASH type 'a' to restart IAuth.
* ircd/s_auth.c: Added auth_restart() function.
2013-06-19 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_HALFOP_DEHALFOP_SELF feature.
* doc/readme.features: Added FEAT_HALFOP_DEHALFOP_SELF feature.
* include/ircd_features.h: Added FEAT_HALFOP_DEHALFOP_SELF feature.
* ircd/channel.c: Added FEAT_HALFOP_DEHALFOP_SELF feature.
* ircd/ircd_features.c: Added FEAT_HALFOP_DEHALFOP_SELF feature.
2013-06-19 Matthew Beeching <[email protected]>
* ircd/channel.c: Minor change to : handling in mode_parse_client().
2013-06-18 Matthew Beeching <[email protected]>
* ircd/m_pass.c: Updated mr_pass to not overwrite the password
if one has already been set.
2013-06-18 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_LOC_TIMEOUT feature.
* doc/readme.features: Added FEAT_LOC_TIMEOUT feature.
* include/ircd_features.h: Added FEAT_LOC_TIMEOUT feature.
* include/s_auth.h: Added a an extra function to cancel LOC timeout.
* ircd/ircd_features.c: Added FEAT_LOC_TIMEOUT feature.
* ircd/m_account.c: Moved LOC code from register_user() to s_auth.c
* ircd/m_pass.c: Moved LOC code from register_user() to s_auth.c
* ircd/s_auth.c: Moved LOC code from register_user() to s_auth.c
* ircd/s_user.c: Moved LOC code from register_user() to s_auth.c
2013-06-17 Matthew Beeching <[email protected]>
* ircd/channel.c: Added check to ensure halfops can set channel bans.
2013-06-12 Matthew Beeching <[email protected]>
* ircd/whocmds.c: Added 'z' flag to the flags field in the WHO
command output to indicate SSL users.
2013-06-12 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_CHMODE_e_CHMODEEXCEPTION option.
* doc/readme.features: Added FEAT_CHMODE_e_CHMODEEXCEPTION option.
* include/ircd_features.h: Added FEAT_CHMODE_e_CHMODEEXCEPTION option.
* ircd/ircd_features.c: Added FEAT_CHMODE_e_CHMODEEXCEPTION option.
* ircd/m_join.c: Added FEAT_CHMODE_e_CHMODEEXCEPTION option and
rearranged join restricton checks to ensure +z (SSL only) always
applies.
2013-06-12 Matthew Beeching <[email protected]>
* ircd/ircd_parser.y: Changed WebIRC block to allow more then one
host mask per WebIRC block.
2013-06-12 Matthew Beeching <[email protected]>
* doc/readme.iauth: Added iauth account notification.
* include/s_auth.h: Added iauth account notification.
* ircd/m_sasl.c: Added iauth account notification.
* ircd/s_auth.c: Added iauth account notification.
2013-06-10 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_ALLOW_OPLEVEL_CHANGE feature.
* doc/readme.features: Added FEAT_ALLOW_OPLEVEL_CHANGE feature.
* include/ircd_features.h: Added FEAT_ALLOW_OPLEVEL_CHANGE feature.
* ircd/channel.c: Added an option to allow +o to change a users
oplevel even if they are already opped.
* ircd/ircd_features.c: Added FEAT_ALLOW_OPLEVEL_CHANGE feature.
2013-06-08 Matthew Beeching <[email protected]>
* doc/example.conf: Added FEAT_LISTDELAY.
* doc/readme.features: Added FEAT_LISTDELAY.
* include/ircd_features.h: Added FEAT_LISTDELAY.
* include/s_conf.h: Added listdelay to the Except block.
* ircd/ircd_features.c: Added FEAT_LISTDELAY.
* ircd/ircd_lexer.l: Added listdelay to the Except block.
* ircd/ircd_parser.y: Added listdelay to the Except block.
* ircd/m_list.c: Added list delay and associated exception.
* ircd/s_err.c: Added listdelay to the Except block.
* ircd/s_stats.c: Added listdelay to the Except block.
2013-06-07 Matthew Beeching <[email protected]>