-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
7046 lines (4283 loc) · 212 KB
/
ChangeLog
File metadata and controls
7046 lines (4283 loc) · 212 KB
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
2007-02-04 20:55 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r986] include/version.h:
- Version bump
2007-02-04 20:51 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r985] Makefile.in, data/Makefile.in, data/networks/Makefile.in,
include/blalloc.h, include/cdefs.h, include/channel.h,
include/class.h, include/common.h, include/config.h,
include/dbuf.h, include/defs.h, include/dh.h,
include/dich_conf.h, include/dynconf.h, include/fdlist.h,
include/fds.h, include/find.h, include/h.h, include/hash.h,
include/ircsprintf.h, include/msg.h, include/nameser.h,
include/numeric.h, include/queue.h, include/res.h,
include/resolv.h, include/send.h, include/sock.h, include/ssl.h,
include/struct.h, include/supported.h, include/sys.h,
include/throttle.h, include/userban.h, include/va_copy.h,
include/version.h, include/whowas.h, include/zlink.h,
src/Makefile.in, src/blalloc.c, src/bsd.c, src/channel.c,
src/class.c, src/clientlist.c, src/dbuf.c, src/dh.c,
src/dich_conf.c, src/drone.c, src/dynconf.c, src/fdlist.c,
src/fds.c, src/hash.c, src/inet_addr.c, src/inet_ntop.c,
src/inet_pton.c, src/ircd.c, src/ircsprintf.c, src/list.c,
src/m_nick.c, src/m_who.c, src/match.c, src/packet.c,
src/parse.c, src/rc4.c, src/res.c, src/res_comp.c,
src/res_init.c, src/res_mkquery.c, src/res_win32.c, src/s_auth.c,
src/s_bsd.c, src/s_conf.c, src/s_debug.c, src/s_err.c,
src/s_help.c, src/s_hidehost.c, src/s_misc.c, src/s_numeric.c,
src/s_serv.c, src/s_services.c, src/s_ultimate.c, src/s_user.c,
src/scache.c, src/send.c, src/socketengine_devpoll.c,
src/socketengine_epoll.c, src/socketengine_kqueue.c,
src/socketengine_poll.c, src/socketengine_select.c,
src/socketengine_winsock.c, src/ssl.c, src/support.c,
src/throttle.c, src/userban.c, src/version.c.SH, src/whowas.c,
src/zlink.c, tools/Makefile.in, tools/ircd,
tools/ircdcron/Makefile.in, tools/kill, tools/mkpasswd.c,
tools/rehash, tools/ssl-cert/Makefile.in:
- Update copyright notices
2007-01-27 23:47 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r984] NEWS, src/fds.c, src/ircd.c, src/m_nick.c, src/s_serv.c:
- Apply patch from Avenger to address bug #0000064.
- Apply patch from Avenger fixing an issue with remote clients
not being shown as being connected by SSL.
2007-01-27 23:20 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r983] NEWS, src/s_user.c:
- Fix bug in detection of CTCP ACTION in check_for_ctcp
(#0000060)
2007-01-27 23:07 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r982] NEWS, src/channel.c, src/s_serv.c:
- Fix an issue with ULined clients being unable to control
channel mode +S (#0000063)
- Small cosmetic fix in s_serv.c
2007-01-26 23:32 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r981] NEWS, autoconf/configure.in, configure:
- Fix OpenSSL detection during configure.
- Regenerate configure with autoconf 2.61
2006-07-21 10:07 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r980] NEWS, data/ircd.ini, src/ircd.c:
- Disable new logging for now. I simply dont have the time to
look into it properly and fix it.
2006-05-28 23:46 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r979] src/fds.c:
- Fix typo
2006-05-18 01:18 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r978] NEWS, src/fds.c:
- Fix a bug in /stats w which would cause it to send replies all
over the place. Reported by and suggested fix by Fish.
2006-01-04 16:36 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r977] NEWS, zlib/ChangeLog, zlib/FAQ, zlib/README,
zlib/adler32.c, zlib/compress.c, zlib/crc32.c, zlib/deflate.c,
zlib/deflate.h, zlib/example.c, zlib/gzio.c, zlib/infback.c,
zlib/inffast.c, zlib/inflate.c, zlib/inflate.h, zlib/inftrees.c,
zlib/inftrees.h, zlib/minigzip.c, zlib/trees.c, zlib/zconf.h,
zlib/zlib.3, zlib/zlib.h, zlib/zutil.c, zlib/zutil.h:
- zlib update
2006-01-04 16:28 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r976] NEWS, include/sock.h, src/channel.c, src/ircd.c,
src/m_nick.c, src/res.c, src/res_win32.c, src/s_auth.c,
src/s_bsd.c, src/s_debug.c, src/s_hidehost.c, src/s_misc.c,
src/s_serv.c, src/s_ultimate.c, src/s_user.c,
src/socketengine_epoll.c, src/ssl.c, src/zlink.c:
- GCC 4.0.x fixes from Trystan
2005-12-15 07:26 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r975] NEWS, src/s_err.c, src/s_user.c:
- Fixed a bug causing mIRC to set $network to conflicting content
under certain network name settings (#0000058)
2005-12-15 06:36 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r974] NEWS, src/socketengine_epoll.c:
- Proper fix for "epoll busy loop" bug originally reported to
Bahamut team.
2005-10-27 04:02 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r973] NEWS, src/s_serv.c:
- Fix /OPERMOTD along with the silly error message.
2005-10-23 23:30 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r972] configure:
- Fix the inadvertantly broken configure script
2005-10-23 21:02 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r971] data/networks/villageirc.network:
- Networks file update
2005-09-30 12:45 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r970] autoconf/configure.in, configure:
- Finally fixed my Subversion client issues.
- Subversion upgraded to 1.2.x
- Proper fix for #0000052, va_copy/__va_copy detection.
2005-06-30 22:16 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r968] NEWS, src/s_user.c:
- Fix some typos.
2005-05-10 16:39 Thomas Wagenveld <Radiant at Shadow-Realm dot Org>
* [r967] data/ircd.ini, include/dynconf.h, src/dynconf.c,
src/ircd.c:
Merge from trunk (rev 966):
- Added log_cycle_renameafter ini option, renames log file after
cycling it instead of adding a date right away
- Certain log options (anything but log flags) can no longer be
rehashed to prevent unexpected behaviour
- ircd will no longer run as root (uid 0), I still see too many
people doing it, its not required and is a huge risk
2005-04-29 21:34 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r964] zlib/Makefile.in:
- Use full path to ar when compiling zlib for portability.
2005-04-29 21:27 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r963] NEWS, tools/Makefile.in:
- Small portability compile fix to allow mkpassword tool to be
built in 32bit mode on x86_64 amongst others.
2005-04-28 21:30 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r960] NEWS, src/ssl.c, win32/UltimateIRCd.dsp,
win32/UltimateIRCd.mak:
- Merge r955:956 from trunk. Windows SSL build support.
2005-04-28 21:26 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r958] include/va_copy.h:
- Add missing include.
2005-04-28 21:24 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r957] autoconf/configure.in, configure, include/setup.h.in,
include/va_copy.h, src/.depend, src/s_help.c:
- Add checking for va_copy and __va_copy to autoconf to make
checking more reliable and portable. This should address bug
#0000052
- Small documentation correction/clarification
2005-04-16 15:26 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r945] src/channel.c, src/ircd.c, src/s_serv.c, src/s_user.c:
- Merge r944
2005-04-15 17:41 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r940] ChangeLog, NEWS, autoconf/configure.in, configure:
- Reapply configure fixes from r911:912 and r920:921 as they
accidentally got reverted in a merge from trunk
2005-04-15 16:55 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r938] Makefile.in, NEWS, autoconf/aclocal.m4, autoconf/ccdv.m4,
autoconf/configure.in, ccdv.c, configure, include/h.h,
include/setup.h.in, src/Makefile.in, src/bsd.c, src/ircd.c,
src/list.c, src/s_user.c, tools/Makefile.in, zlib/Makefile.in,
zlib/configure, zlib/zconf.h, zlib/zconf.in.h:
- Numerous merges from trunk including compiler warning fixes and
addition of ccdv for compiler output.
2005-04-14 21:16 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r935] zlib/ChangeLog, zlib/FAQ, zlib/INDEX, zlib/README,
zlib/configure, zlib/crc32.c, zlib/deflate.c, zlib/deflate.h,
zlib/gzio.c, zlib/infback.c, zlib/inffast.c, zlib/inflate.c,
zlib/inftrees.c, zlib/trees.c, zlib/zconf.h, zlib/zconf.in.h,
zlib/zlib.3, zlib/zlib.h, zlib/zutil.h:
- Merge r934 from trunk
2005-04-13 22:23 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r931] src/ircd.c, src/s_debug.c:
- Merge 2 fixes from trunk to allow ircd to compile.
2005-04-13 19:55 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r928] include/h.h:
- Fix typo. ilog, not log.
2005-04-13 19:29 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r927] include/defs.h, win32/UltimateIRCd.dsp:
- Unresolved conflict that managed to make its way into the
repository.
2005-04-13 19:18 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r926] NEWS, NEWS.3.0, data/ircd.ini, include/config.h,
include/dynconf.h, include/h.h, include/struct.h,
include/version.h, src/channel.c, src/dynconf.c, src/ircd.c,
src/res_win32.c, src/s_debug.c, src/s_misc.c, src/s_serv.c,
src/s_ultimate.c, src/s_user.c, src/send.c,
win32/UltimateIRCd.dsp:
- Merge 921:924 from trunk
- Moved include of defs.h in config.h to the top so it wont be so
easilly missed.
2005-04-13 19:09 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r925] include/defs.h:
- Silly silly forcing poll to be enabled on some systems. We
correctly detect presence of socketengines now during configure.
2005-04-10 22:30 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r921] ChangeLog, NEWS, autoconf/configure.in, configure,
doc/authors/Authors, src/version.c.SH:
- Doc update
- ./configure fixes, more flags that where broken
2005-04-10 20:10 Thomas Wagenveld <Radiant at Shadow-Realm dot Org>
* [r920] include/send.h, src/ircd.c, src/s_bsd.c, src/s_debug.c,
src/socketengine_devpoll.c, src/socketengine_epoll.c,
src/socketengine_kqueue.c, src/socketengine_poll.c,
src/socketengine_select.c, win32/UltimateIRCd.dsp,
win32/UltimateIRCd.mak:
- Some compile fixes on windows, debug mode now works, fixed some
missing/incorrect includes
- Fixed incorrectly opened fd for resolver on windows
2005-04-10 17:45 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r919] include/common.h, src/s_serv.c, src/socketengine_poll.c:
- Fix common.h double declaration
- Add missing include to poll socketengine that got lost during
the SunOS fix.
- Apply the read_* fix to read_shortmotd aswell.
2005-04-10 07:26 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r918] ChangeLog:
- Fully update ChangeLog for release
2005-04-10 07:18 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r917] ChangeLog, NEWS.3.0, NEWS.old, autoconf/configure.in,
configure, doc/INSTALL, include/version.h:
- Prep for 3.0.1 release
2005-04-09 17:40 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r916] NEWS, src/socketengine_devpoll.c,
src/socketengine_epoll.c, src/socketengine_kqueue.c,
src/socketengine_poll.c, src/socketengine_select.c,
src/socketengine_winsock.c:
- SunOS 5.8 compile fixes reported by Hirop @ IRCHighway
2005-04-08 12:43 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r914] NEWS, src/channel.c:
- This fixes bug #0000034. We now use a default message instead
of failing when no "msg" directive is set in channels.conf
2005-04-08 11:50 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r912] NEWS, autoconf/configure.in, configure:
- Renamed --enable-debug to --enable-debugmode, which means it
will also work now.
2005-04-08 02:17 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r911] win32/CreateVersion.vbs, win32/Make.vbs, win32/README.txt,
win32/UltimateIRCd.dep, win32/UltimateIRCd.dsp,
win32/UltimateIRCd.dsw, win32/UltimateIRCd.mak:
- Fixed properties on files missing the eol-style naitive, also
fixed a mix of Windows and Unix linebreaks in UltimateIRCd.mak
2005-04-07 09:08 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r909] NEWS, NEWS.old:
- Added NEWS.old for older changelog entries
2005-04-06 20:53 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r908] src/res_win32.c, src/socketengine_winsock.c:
- Indent broke res_win32.c and socketengine_winsock.c due to
windows linebreaks. Fixed.
2005-04-06 02:34 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r904] src/.indent.pro, src/blalloc.c, src/bsd.c, src/channel.c,
src/class.c, src/clientlist.c, src/dbuf.c, src/dh.c,
src/dich_conf.c, src/drone.c, src/dynconf.c, src/fdlist.c,
src/fds.c, src/hash.c, src/inet_addr.c, src/inet_ntop.c,
src/inet_pton.c, src/ircd.c, src/ircsprintf.c, src/list.c,
src/m_nick.c, src/m_who.c, src/match.c, src/packet.c,
src/parse.c, src/rc4.c, src/res.c, src/res_comp.c,
src/res_init.c, src/res_mkquery.c, src/res_win32.c, src/s_auth.c,
src/s_bsd.c, src/s_conf.c, src/s_debug.c, src/s_help.c,
src/s_hidehost.c, src/s_misc.c, src/s_numeric.c, src/s_serv.c,
src/s_services.c, src/s_ultimate.c, src/s_user.c, src/scache.c,
src/send.c, src/socketengine_devpoll.c, src/socketengine_epoll.c,
src/socketengine_kqueue.c, src/socketengine_poll.c,
src/socketengine_select.c, src/socketengine_winsock.c, src/ssl.c,
src/support.c, src/throttle.c, src/userban.c, src/whowas.c,
src/zlink.c:
- Add .indent.pro containing the options corresponding to the
slight change in coding style discussed with Radiant.
- Reran indent to apply the new coding style
2005-04-06 00:24 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r903] ChangeLog, NEWS:
- Moved old ChangeLog to NEWS where it belongs.
- ChangeLog is now generated from svn log using a small perl
script.
- ChangeLog.3.0 contains full changelog up to 3.0 release.
2005-04-05 16:43 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r901] ChangeLog, src/s_serv.c:
- The read_motd fix should apply to all the read_ functions. This
should really be consolidated into a single function when i find
time though.
2005-03-30 06:11 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r896] ChangeLog, src/bsd.c, src/channel.c, src/inet_ntop.c,
src/inet_pton.c, src/ircd.c, src/res.c, src/res_win32.c,
src/s_auth.c, src/s_bsd.c, src/s_debug.c, src/s_services.c,
src/socketengine_winsock.c:
- Fix bug allowing non SSL enabled clients to set a channel +S
2005-03-29 14:32 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r895] include/version.h:
- Silly logic issue leading to flooding of global connect notices
on synch.
2005-03-29 14:27 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r894] ChangeLog, src/m_nick.c:
- Silly logic issue leading to flooding of global connect notices
on synch.
2005-03-20 09:32 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r893] include/common.h, include/config.h, include/dbuf.h,
include/fds.h, include/h.h, include/inet.h, include/ircsprintf.h,
include/msg.h, include/nameser.h, include/res.h,
include/res_win32.h, include/setup_win32.h, include/struct.h,
include/sys.h, src/bsd.c, src/dynconf.c, src/inet_addr.c,
src/inet_ntop.c, src/inet_pton.c, src/ircd.c, src/m_nick.c,
src/m_who.c, src/res.c, src/res_init.c, src/res_mkquery.c,
src/res_win32.c, src/s_auth.c, src/s_bsd.c, src/s_conf.c,
src/s_debug.c, src/s_hidehost.c, src/s_misc.c, src/s_serv.c,
src/s_services.c, src/s_ultimate.c, src/s_user.c,
src/socketengine_winsock.c, src/throttle.c, src/userban.c, win32,
win32/CreateVersion.vbs, win32/Make.vbs, win32/README.txt,
win32/UltimateIRCd.dep, win32/UltimateIRCd.dsp,
win32/UltimateIRCd.dsw, win32/UltimateIRCd.mak:
- Merge r892 Win32 changes from trunk
2005-03-19 06:57 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r891] ChangeLog, include/version.h:
- Designate this 3.0.1.svn
2005-03-19 06:13 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r888] .:
- Moving 3.0 into its own branch. Trunk will now contain what
will become 3.1
2005-03-19 06:07 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r887] trunk/src/s_services.c:
- Remove some debugging output for now.
2005-03-18 06:19 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r886] trunk/data/networks/villageirc.network,
trunk/src/dynconf.c:
- More cosmetical fixes
- Fix typo in networks settings file.
2005-03-17 00:16 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r885] trunk/NEWS:
- Testing commit hooks, ignore.
2005-03-17 00:01 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r884] trunk/NEWS:
- Testing commit hooks, ignore.
2005-03-16 23:48 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r883] trunk/.cvsignore, trunk/data/.cvsignore,
trunk/data/networks/.cvsignore, trunk/include/.cvsignore,
trunk/src/.cvsignore, trunk/tools/.cvsignore,
trunk/tools/ircdcron/.cvsignore:
- Remove now obsolete .cvsignore files
2005-03-16 23:36 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r882] trunk/ChangeLog:
- Prep for release
2005-03-16 23:15 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r881] trunk/autoconf/configure.in, trunk/configure,
trunk/data/networks/Makefile.in, trunk/doc/authors/Authors,
trunk/src/dh.c, trunk/src/ircd.c, trunk/src/s_bsd.c,
trunk/tools/ircd, trunk/tools/kill, trunk/tools/rehash:
- Authors update
- Cosmetical fixes
- configure fixes
- Makefile fixes
2005-03-16 23:03 Patrick Healy <Phealy at Shadow-Realm dot Org>
* [r880] trunk/NEWS:
Fixed an error "Sourceforge SVN" -> "Sourceforge CVS"
2005-03-16 07:41 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r879] trunk/Makefile.in, trunk/NEWS,
trunk/autoconf/configure.in, trunk/configure,
trunk/data/Makefile.in, trunk/data/networks/Makefile.in,
trunk/data/networks/clan-forsaken.network,
trunk/data/networks/fractured.network,
trunk/data/networks/insiderz.network,
trunk/data/networks/jpilot.network, trunk/doc/FAQ,
trunk/doc/RAW-NUMERICS.txt, trunk/doc/README,
trunk/doc/README.FIRST, trunk/doc/authors/Authors,
trunk/doc/authors/Bahamut-team, trunk/doc/authors/Hybrid-team,
trunk/doc/authors/IRC-Authors, trunk/doc/example.conf,
trunk/doc/manual, trunk/include/blalloc.h, trunk/include/cdefs.h,
trunk/include/channel.h, trunk/include/class.h,
trunk/include/common.h, trunk/include/config.h,
trunk/include/dbuf.h, trunk/include/defs.h, trunk/include/dh.h,
trunk/include/dich_conf.h, trunk/include/dynconf.h,
trunk/include/fdlist.h, trunk/include/fds.h,
trunk/include/find.h, trunk/include/h.h, trunk/include/hash.h,
trunk/include/inet.h, trunk/include/ircsprintf.h,
trunk/include/msg.h, trunk/include/nameser.h,
trunk/include/numeric.h, trunk/include/queue.h,
trunk/include/res.h, trunk/include/resolv.h,
trunk/include/send.h, trunk/include/sock.h, trunk/include/ssl.h,
trunk/include/struct.h, trunk/include/supported.h,
trunk/include/sys.h, trunk/include/throttle.h,
trunk/include/userban.h, trunk/include/va_copy.h,
trunk/include/version.h, trunk/include/whowas.h,
trunk/include/zlink.h, trunk/src/Makefile.in,
trunk/src/blalloc.c, trunk/src/bsd.c, trunk/src/channel.c,
trunk/src/class.c, trunk/src/clientlist.c, trunk/src/dbuf.c,
trunk/src/dh.c, trunk/src/dich_conf.c, trunk/src/drone.c,
trunk/src/dynconf.c, trunk/src/fdlist.c, trunk/src/fds.c,
trunk/src/hash.c, trunk/src/inet_addr.c, trunk/src/inet_ntop.c,
trunk/src/inet_pton.c, trunk/src/ircd.c, trunk/src/ircsprintf.c,
trunk/src/list.c, trunk/src/m_nick.c, trunk/src/m_who.c,
trunk/src/match.c, trunk/src/packet.c, trunk/src/parse.c,
trunk/src/rc4.c, trunk/src/res.c, trunk/src/res_comp.c,
trunk/src/res_init.c, trunk/src/res_mkquery.c,
trunk/src/s_auth.c, trunk/src/s_bsd.c, trunk/src/s_conf.c,
trunk/src/s_debug.c, trunk/src/s_err.c, trunk/src/s_help.c,
trunk/src/s_hidehost.c, trunk/src/s_misc.c,
trunk/src/s_numeric.c, trunk/src/s_serv.c,
trunk/src/s_services.c, trunk/src/s_ultimate.c,
trunk/src/s_user.c, trunk/src/scache.c, trunk/src/send.c,
trunk/src/socketengine_devpoll.c, trunk/src/socketengine_epoll.c,
trunk/src/socketengine_kqueue.c, trunk/src/socketengine_poll.c,
trunk/src/socketengine_select.c, trunk/src/ssl.c,
trunk/src/support.c, trunk/src/throttle.c, trunk/src/userban.c,
trunk/src/version.c.SH, trunk/src/whowas.c, trunk/src/zlink.c,
trunk/tools/Makefile.in, trunk/tools/ircd,
trunk/tools/ircdcron/Makefile.in, trunk/tools/kill,
trunk/tools/mkpasswd.c, trunk/tools/rehash,
trunk/tools/ssl-cert/Makefile.in:
- Update ALL fileheaders
- Minor documentation changes
- We are now UltimateIRCd 3.0.0 final
2005-03-16 06:19 Patrick Healy <Phealy at Shadow-Realm dot Org>
* [r878] trunk/ChangeLog, trunk/src/channel.c, trunk/src/s_user.c:
Fixed a few grammatical errors in messages.
2005-03-11 00:23 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r877] trunk/autoconf/configure.in, trunk/configure:
- Fix silly error to allow disabeling of crypted operator
passwords.
2005-02-09 19:39 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r876] trunk/ChangeLog, trunk/autoconf/configure.in,
trunk/configure, trunk/data/channels.conf,
trunk/data/ircd.conf.dist, trunk/data/kline.conf,
trunk/data/vhost.conf, trunk/doc/authors/Authors, trunk/src/dh.c,
trunk/src/dynconf.c, trunk/src/ircd.c, trunk/src/s_bsd.c,
trunk/src/s_help.c, trunk/src/s_misc.c, trunk/src/s_serv.c,
trunk/src/s_ultimate.c, trunk/tools/ircd, trunk/tools/kill,
trunk/tools/rehash:
- configure fixes
- cg's ircdhelp updates
- Cosmetical fixes
- Ran trough indent
2005-02-06 23:05 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r875] trunk/ChangeLog:
- Moved several config.h options to autoconf now
- Regenerated .depend and setup.h.in
2005-02-06 22:59 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r874] trunk/ChangeLog, trunk/NEWS, trunk/autoconf/configure.in,
trunk/configure, trunk/include/config.h,
trunk/include/setup.h.in, trunk/src/.depend:
- Moved several config.h options to autoconf now
- Regenerated .depend and setup.h.in
2005-02-06 14:51 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r873] trunk/src/s_misc.c:
Really fix bug #0000027
2005-02-05 17:15 Mathias Voros <Againaway at Shadow-Realm dot Org>
* [r872] trunk/ChangeLog, trunk/src/ircd.c:
- fix for the cmd-line help
* it exits with -1 ..
* some options might not work...
2005-02-05 00:00 Mathias Voros <Againaway at Shadow-Realm dot Org>
* [r871] trunk/ChangeLog, trunk/include/config.h,
trunk/src/s_serv.c:
- fixed the syslog stuff
2005-02-04 23:18 Mathias Voros <Againaway at Shadow-Realm dot Org>
* [r870] trunk/ChangeLog, trunk/include/config.h,
trunk/include/h.h, trunk/include/struct.h, trunk/src/Makefile.in,
trunk/src/fds.c, trunk/src/ircd.c, trunk/src/list.c,
trunk/src/s_bsd.c, trunk/src/s_socks.c, trunk/src/s_user.c,
trunk/src/socketengine_devpoll.c, trunk/src/socketengine_epoll.c,
trunk/src/socketengine_kqueue.c, trunk/src/socketengine_poll.c,
trunk/src/socketengine_select.c:
- fix for #0000035
2005-02-04 20:08 Mathias Voros <Againaway at Shadow-Realm dot Org>
* [r869] trunk/src/s_serv.c:
- fix for #0000036
2005-02-01 04:24 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r868] trunk/ChangeLog, trunk/autoconf/configure.in,
trunk/configure, trunk/include/struct.h, trunk/include/version.h:
- Be sure to include the files before the ifdef check for
Kerberos5 support so we will actually know if its defined or not.
2005-01-31 16:30 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r867] trunk/ChangeLog, trunk/autoconf/configure.in,
trunk/configure, trunk/include/numeric.h,
trunk/include/version.h, trunk/src/channel.c, trunk/src/m_nick.c,
trunk/src/s_conf.c, trunk/src/s_err.c, trunk/src/s_help.c:
- Committing all changes done while SVN was offline.
2005-01-30 00:45 Patrick Healy <Phealy at Shadow-Realm dot Org>
* [r866] trunk/src/s_serv.c:
Fixed sending %s on /rehash channels, per Christian Gayer (cg).
2005-01-30 00:33 Patrick Healy <Phealy at Shadow-Realm dot Org>
* [r865] trunk/src/s_help.c:
Added mode c to /ircdhelp chanmodes, per cg's suggestion.
2005-01-29 22:54 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r864] trunk/ChangeLog, trunk/autoconf/configure.in,
trunk/configure, trunk/include/version.h:
- This is now rc3/final
2005-01-29 07:11 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r860] trunk/NEWS:
- Mention the move to SVN and instructions on how to checkout.
2005-01-29 07:00 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r859] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 06:55 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r858] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 06:54 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r857] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 06:45 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r856] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 06:39 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r855] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 06:31 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r854] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 06:21 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r853] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 06:14 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r852] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 06:05 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r851] trunk/NEWS:
- Testing SVN hooks. Ignore
2005-01-29 04:59 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r850] trunk/NEWS:
- Testing
2005-01-28 06:04 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r849] trunk/src/s_help.c:
Fix a linebreak causing trouble
2005-01-28 05:53 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r848] trunk/ChangeLog:
Testing SVN hooks/mailer
2005-01-28 05:14 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r847] trunk/ChangeLog, trunk/Makefile.in, trunk/NEWS,
trunk/autoconf/configure.in, trunk/configure,
trunk/data/channels.conf, trunk/data/ircd.conf.dist,
trunk/data/ircd.ini, trunk/data/kline.conf,
trunk/data/vhost.conf, trunk/include/struct.h,
trunk/include/version.h, trunk/src/channel.c,
trunk/src/dynconf.c, trunk/src/ircd.c, trunk/src/m_nick.c,
trunk/src/s_bsd.c, trunk/src/s_help.c, trunk/src/s_serv.c,
trunk/src/s_services.c, trunk/src/send.c, trunk/src/version.c.SH,
trunk/tools/ircd, trunk/tools/kill, trunk/tools/rehash:
Bring SVN up to date with all the commits missing from CVS
tarball
2005-01-10 03:29 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r846] trunk/ChangeLog, trunk/src/socketengine_kqueue.c:
- Fix a compile issue with the kqueue socket engine on older
compilers.
Reported by several.
2005-01-05 16:42 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r845] trunk/tools/ircdcron/ircd.cron:
- More sensible default path.
2005-01-04 23:30 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r844] trunk/tools/ircdcron/ircdchk:
- Fix the default path. Reported by Ericson @ SRC Forums
2005-01-04 03:12 Patrick Healy <Phealy at Shadow-Realm dot Org>
* [r843] trunk/src/s_help.c:
Committed for cg.
2005-01-03 02:29 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r842] trunk/ChangeLog, trunk/src/s_help.c:
- Fix some typos and make some clarifications to /IRCDHELP,
reported by Phealy @ SRC IRC
2004-12-31 15:42 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r841] trunk/data/networks/Makefile.in:
- Thanx _HTH_. Minor but still important.
2004-12-31 15:35 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r840] trunk/ChangeLog, trunk/autoconf/configure.in,
trunk/configure, trunk/include/version.h:
- RC1 released. This is now RC2/Final
2004-12-30 23:44 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r838] trunk/src/s_serv.c:
- Remove debug notices, and were set for RC1 release
2004-12-29 21:25 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r837] trunk/src/s_misc.c:
- Kludge to avoid double exit notices until we get rid of the
GCONNECT legacy
2004-12-29 20:56 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r836] trunk/data/networks/villageirc.network,
trunk/src/s_serv.c:
- Address backwards compactibility for global connect notices
(for now)
2004-12-28 22:07 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r835] trunk/doc/draft-brocklesby-irc-isupport-03.txt:
-
2004-12-28 21:56 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r834] trunk/src/s_misc.c:
- Remove debug notice
2004-12-08 17:32 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r833] trunk/src/s_user.c:
- This shouldnt be here anymore, even though it shouldnt do any
harm atm.
2004-12-06 14:01 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r832] trunk/NEWS, trunk/autoconf/configure.in, trunk/configure,
trunk/include/version.h:
- Prepare for RC1 Release
2004-11-21 23:16 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r831] trunk/src/s_help.c:
- Patch from Christian 'cg' Gayer < cg [at] dexit [dot] de >.
Updates ircdhelp documentation. Some comments added.
2004-11-17 14:16 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r830] trunk/ChangeLog, trunk/src/m_nick.c:
- Legacy TS issue fix from Bahamut (Originaly from Hybrid team)
2004-10-28 18:51 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r829] trunk/include/version.h:
*** empty log message ***
2004-10-28 18:50 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r828] trunk/ChangeLog, trunk/include/struct.h, trunk/src/ircd.c,
trunk/src/m_nick.c, trunk/src/s_bsd.c, trunk/src/s_misc.c,
trunk/src/s_serv.c:
- Semi completed EOBURST. Some debug notices still left in and
some error checks missing, but it should be fully functional.
2004-10-28 12:28 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r827] trunk/src/fds.c, trunk/src/ircd.c, trunk/src/s_bsd.c,
trunk/src/socketengine_devpoll.c, trunk/src/socketengine_epoll.c:
- Whoops
2004-10-28 12:24 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r826] trunk/zlib/configure:
- Add missing configure
2004-10-28 12:21 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r825] trunk/src/fds.c, trunk/src/ircd.c, trunk/src/s_bsd.c:
- Take care of some missing delcarations
2004-10-27 13:04 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r824] trunk/include/version.h:
- New build ID
2004-10-27 13:02 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r823] trunk/zlib/ChangeLog, trunk/zlib/FAQ, trunk/zlib/INDEX,
trunk/zlib/Makefile.in, trunk/zlib/README, trunk/zlib/adler32.c,
trunk/zlib/algorithm.txt, trunk/zlib/compress.c,
trunk/zlib/crc32.c, trunk/zlib/deflate.c, trunk/zlib/deflate.h,
trunk/zlib/example.c, trunk/zlib/gzio.c, trunk/zlib/inffast.c,
trunk/zlib/inffast.h, trunk/zlib/inffixed.h,
trunk/zlib/inflate.c, trunk/zlib/inftrees.c,
trunk/zlib/inftrees.h, trunk/zlib/minigzip.c, trunk/zlib/trees.c,
trunk/zlib/trees.h, trunk/zlib/uncompr.c, trunk/zlib/zconf.h,
trunk/zlib/zconf.in.h, trunk/zlib/zlib.3, trunk/zlib/zlib.h,
trunk/zlib/zutil.c, trunk/zlib/zutil.h:
- Update to ZLib 1.2.1 take two after CVS went nutty.
2004-10-27 12:55 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r822] trunk/zlib/.cvsignore, trunk/zlib/ChangeLog,
trunk/zlib/FAQ, trunk/zlib/INDEX, trunk/zlib/Makefile.in,
trunk/zlib/README, trunk/zlib/adler32.c,
trunk/zlib/algorithm.txt, trunk/zlib/compress.c,
trunk/zlib/configure, trunk/zlib/crc32.c, trunk/zlib/deflate.c,
trunk/zlib/deflate.h, trunk/zlib/example.c, trunk/zlib/gzio.c,
trunk/zlib/infblock.c, trunk/zlib/infblock.h,
trunk/zlib/infcodes.c, trunk/zlib/infcodes.h,
trunk/zlib/inffast.c, trunk/zlib/inffast.h,
trunk/zlib/inffixed.h, trunk/zlib/inflate.c,
trunk/zlib/inftrees.c, trunk/zlib/inftrees.h,
trunk/zlib/infutil.c, trunk/zlib/infutil.h,
trunk/zlib/maketree.c, trunk/zlib/minigzip.c, trunk/zlib/trees.c,
trunk/zlib/trees.h, trunk/zlib/uncompr.c, trunk/zlib/zconf.h,
trunk/zlib/zlib.3, trunk/zlib/zlib.h, trunk/zlib/zutil.c,
trunk/zlib/zutil.h:
- Trying to cleanup this mess
2004-10-27 12:47 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>
* [r821] trunk/ChangeLog, trunk/autoconf/configure.in,
trunk/configure, trunk/include/setup.h.in, trunk/src/.depend,
trunk/zlib/ChangeLog, trunk/zlib/FAQ, trunk/zlib/INDEX,
trunk/zlib/Makefile.in, trunk/zlib/README, trunk/zlib/adler32.c,
trunk/zlib/algorithm.txt, trunk/zlib/compress.c,
trunk/zlib/configure, trunk/zlib/crc32.c, trunk/zlib/crc32.h,
trunk/zlib/deflate.c, trunk/zlib/deflate.h,
trunk/zlib/descrip.mms, trunk/zlib/example.c, trunk/zlib/gzio.c,
trunk/zlib/infback.c, trunk/zlib/inffast.c, trunk/zlib/inffast.h,
trunk/zlib/inffixed.h, trunk/zlib/inflate.c,
trunk/zlib/inflate.h, trunk/zlib/inftrees.c,
trunk/zlib/inftrees.h, trunk/zlib/minigzip.c, trunk/zlib/trees.c,
trunk/zlib/uncompr.c, trunk/zlib/zconf.h, trunk/zlib/zconf.in.h,
trunk/zlib/zlib.3, trunk/zlib/zlib.h, trunk/zlib/zutil.c,
trunk/zlib/zutil.h:
*** empty log message ***
2004-10-27 01:42 Thomas Juberg <ShadowMaster at Shadow-Realm dot Org>