-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2995 lines (2030 loc) · 82 KB
/
ChangeLog
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
commit a932cc53a91df6651e673b20d4de14a6bff02114
Author: Arnaud Cornet <[email protected]>
Date: Sun Nov 15 20:40:17 2009 +0000
[BUILD] Attempt to fix autostuff
commit 944f18962a1a4e937db9d689a80c0b3958ec6301
Author: Arnaud Cornet <[email protected]>
Date: Sun Nov 15 20:21:27 2009 +0000
Add -git to version string.
commit 06a67e08af30d9b10d0707096d47ceb59b27fc39
Author: Arnaud Cornet <[email protected]>
Date: Sun Nov 15 20:21:24 2009 +0000
Update src/version.h and Changelog for release.
commit 03ee43ca89edaf4dfa79412dc91aa89694634445
Author: Arnaud Cornet <[email protected]>
Date: Sun Nov 15 20:14:28 2009 +0000
[BUG] fatal() on nick change on gamesurge network
Some time gamesurge sends a "foo NICK :foo" which we didn't handle
correctly.
commit 31ae5ac0bf2651778979fb974bba4e0fb6b4f0b8
Author: Arnaud Cornet <[email protected]>
Date: Mon Aug 24 21:26:46 2009 +0200
[autostuff] Rewrite. Use non recursive make. Drop src/config.h.in that must be populated by autoheader
commit 889f3cc1b7b4ed62f1d34c5afee6835ec30b72a6
Author: Arnaud Cornet <[email protected]>
Date: Mon Aug 24 19:05:48 2009 +0200
Add -git to version string.
commit c496bd702791b451d2bc248679405eaa0c9d9d41
Author: Arnaud Cornet <[email protected]>
Date: Mon Aug 24 19:05:45 2009 +0200
Update src/version.h and Changelog for release.
commit 70fbf99c7f6422a033220211307f6085a453edc3
Author: Arnaud Cornet <[email protected]>
Date: Wed Aug 19 22:02:56 2009 +0200
Refactor _write_socket
Call real_write_all in write_lines and write_line.
This should fix debian bug #542291.
BIG thanks to Zygo Blaxell.
commit 7546daa27691fb981230c0119cd0e25a461ca770
Author: Arnaud Cornet <[email protected]>
Date: Wed Aug 19 02:09:16 2009 +0200
[BUG] Handle badly lagging client conns decently.
commit fa0c70539b5e2a86d08b635ff87979758d57da09
Author: Arnaud Cornet <[email protected]>
Date: Sun Jul 26 11:38:20 2009 +0200
Allow parallel build (thks Whoopie and psychon).
commit 442e4973cd6f67ef069b0d674d527033b68a57c2
Author: Arnaud Cornet <[email protected]>
Date: Fri Jul 17 11:43:34 2009 +0200
Add -git to version string.
commit a7c38c17c07d80fb740cd47098f75c93d76f7c1c
Author: Arnaud Cornet <[email protected]>
Date: Fri Jul 17 11:43:29 2009 +0200
Update src/version.h and Changelog for release.
commit 213643d5bf74d1d71b8faec71505a4c1ec448452
Author: Arnaud Cornet <[email protected]>
Date: Sun Jul 5 19:35:00 2009 +0200
size hour array correctly
commit 1a2b1dd165282d24cc5c2a2e5f1bc4e793e41be5
Author: Arnaud Cornet <[email protected]>
Date: Sun Jul 5 19:04:51 2009 +0200
Cleanup log outputs
commit 36989553659370a8ed76d80932be485410095bbf
Author: Arnaud Cornet <[email protected]>
Date: Sun Jul 5 18:08:35 2009 +0200
Don't reset store->file_offset when adding a new file
This just makes no sense
commit a8fb0c40d3a0f26617bbbc5eea2381284d346f6b
Author: Arnaud Cornet <[email protected]>
Date: Sun Jul 5 14:00:06 2009 +0200
Support hour in log format. Mostly for debugging
commit 32e08c94aaa192edafbe910901be79554a50e6ff
Author: Arnaud Cornet <[email protected]>
Date: Thu Jul 2 18:05:51 2009 +0200
SSL basic mode, support X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN
commit 405f8b4afc33bac9fa8d7afffd526e9a02c81f0d
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 28 16:33:29 2009 +0200
[log] Use canonical name to detect need for log rotation
Also reset store on part from server to close more file descriptor.
commit 453223442660150c33c3f55b661d7ba93fab3802
Author: Arnaud Cornet <[email protected]>
Date: Thu Jun 25 01:24:38 2009 +0200
[ssl:basic] Restore trust command behavior that was broken (repported by psychon)
commit 5ae1c1dec53b22e4af4ca283d3d140862bec6ec7
Author: Arnaud Cornet <[email protected]>
Date: Thu Jun 25 00:43:44 2009 +0200
[log] close logs files more intensively.
commit 7af35a3018e3aff62411ad770d9fc14e344b526a
Author: Arnaud Cornet <[email protected]>
Date: Thu Jun 18 13:50:43 2009 +0200
Bad and useless strncat use (reported by psychon, thanks to him)
commit 015969e86be1f15925856c0673b1dd3261b3b2fc
Author: Arnaud Cornet <[email protected]>
Date: Sat Jun 13 17:29:44 2009 +0200
[log] Fix to /bip backlog x
This is fix for:
When using /bip backlog X windows with no tracked backlog (ie after a
blreset) do not show backlog
commit 8cea2bdb710f40d7ed22acc14af5ead9179912aa
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 7 13:22:20 2009 +0200
Don't fail if ressetting non existing store.
commit 94b5ac4797a10188f95cc7e8774cb2dfd6db6302
Author: Arnaud Cornet <[email protected]>
Date: Fri Jun 5 00:44:28 2009 +0200
[release script] Fix mktemp usage
commit 499a7d75b59e7bfdf3bfc9201015f7bc94e3135e
Author: Arnaud Cornet <[email protected]>
Date: Fri Jun 5 00:43:05 2009 +0200
backlog tweak
commit 9187d556b54d04927b11c97aed18909059be6c43
Author: Arnaud Cornet <[email protected]>
Date: Wed Mar 25 11:40:19 2009 +0100
Fix info user parsing.
commit 3166a570223020f8b3c7bee8649f244e40d6978d
Author: Arnaud Cornet <[email protected]>
Date: Mon Mar 2 12:54:27 2009 +0100
Add -git to version string.
commit 104d251a0bfe29e9a8a2edf67373b6cf2db11ddf
Author: Arnaud Cornet <[email protected]>
Date: Mon Mar 2 12:54:25 2009 +0100
Update src/version.h and Changelog for release.
commit b6f30f6a032421911035f77a59d29549e4ab7828
Author: Arnaud Cornet <[email protected]>
Date: Sat Feb 28 11:19:57 2009 +0100
Fix one leak. Fix git-release script for new git.
commit 29ff342d93ba4f5c253702468c3c951a9e61eb91
Author: Arnaud Cornet <[email protected]>
Date: Sun Feb 8 12:36:49 2009 +0100
Add option ignore_server_capab
commit b8c740357d9aeaa0d74b53bacdd55156752d3c64
Author: Arnaud Cornet <[email protected]>
Date: Mon Feb 2 19:51:10 2009 +0100
Add -git to version string.
commit 1f462ef03585d3cf439e36a591dc3c4630d2d2a1
Author: Arnaud Cornet <[email protected]>
Date: Mon Feb 2 19:51:05 2009 +0100
Update src/version.h and Changelog for release.
commit eef2fd180d77aab96337a5a0ecd240cc2dea0328
Author: Arnaud Cornet <[email protected]>
Date: Mon Feb 2 19:47:53 2009 +0100
[CLIENTHACK] Remove xchat's + and - on each msg
This patch drops CAPAB setting in 005 message from server to client.
Doing this xchat does not start the mode that prepends a + or a - at the
beginning of PRIVMSGS.
commit c4fb1b140add5050c8f4c1a77856272aac40cc01
Author: Arnaud Cornet <[email protected]>
Date: Wed Jan 28 19:21:30 2009 +0100
Another man typo found by Renzokuken.
commit b5d777dfee75cad37fe488634b68d2fd71689189
Author: Arnaud Cornet <[email protected]>
Date: Wed Jan 28 15:13:44 2009 +0100
man typo found by Renzokuken.
commit 69640eaf8c49339d71523d01fcb21494db546172
Author: Arnaud Cornet <[email protected]>
Date: Tue Jan 27 11:24:50 2009 +0100
[FIX] Complete previous commit
Previous commit was incomplete and did not log some weird messages. They
still might be legit, so we come with them
commit 5416fc19b203e94bb31cd35ef2ceeafb2ddbbd5f
Author: Arnaud Cornet <[email protected]>
Date: Tue Jan 27 08:25:44 2009 +0100
[FIX] check for weird shape notice messages
Prevents a fatal on some rare conditions
commit c2b3090e471b6f169b9359e5c8d89c6b5920e0d1
Author: Arnaud Cornet <[email protected]>
Date: Mon Jan 26 16:57:52 2009 +0100
Cosmetic (special kasdedi a trou)
commit bfc86202a1cfc3c0c7ed7252106f5ed4e1e265b7
Author: Arnaud Cornet <[email protected]>
Date: Sun Jan 25 14:44:26 2009 +0100
Add -git to version string.
commit 488a17dab5f29a19071edc798863a11507a1c893
Author: Arnaud Cornet <[email protected]>
Date: Sun Jan 25 14:44:22 2009 +0100
Update src/version.h and Changelog for release.
commit 5628da3ee07b7891c159469b0e8ac4080e91c8b5
Author: Arnaud Cornet <[email protected]>
Date: Sun Jan 25 14:41:19 2009 +0100
Add warning when using 512 bits long moduli for diffie hellman
commit b62c3e4697124e1331362f973296003fffc4b26f
Author: Arnaud Cornet <[email protected]>
Date: Sun Jan 25 14:24:22 2009 +0100
[SSL] Support ephemeral diffie hellman kex
Pushing some non private data into openssl enables to use edh that
provides perfect forward secrecy.
commit 7e539298fdd5860e947debfa41c456efda0ba4aa
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 24 21:48:12 2009 +0100
Update NEWS file.
commit 03210a796e45ec50709cca4528b98406e68f3fbe
Author: Arnaud Cornet <[email protected]>
Date: Thu Jan 22 12:06:26 2009 +0100
[CLEANUP] Add lots of asserts in utils
list hash and array types are now even stricter on their usage.
commit dae6cad3f7b0b6959ee8df2c9831c2c78e70162e
Author: Ben Byer <[email protected]>
Date: Thu Jan 22 11:26:03 2009 +0100
Add limit.h for INT_MAX
commit 23b6ec4492dca350435069c170bffac8beb2ac65
Author: Arnaud Cornet <[email protected]>
Date: Thu Jan 22 11:24:44 2009 +0100
Better check for backread returning NULL
commit 43fe81e114e9fab747fc15a2e5683dc3d1d9f94b
Author: Ben Byer <[email protected]>
Date: Thu Jan 22 10:14:33 2009 +0100
add null pointer check to backlog_lines
In some configuration backlog_lines can return NULL
commit 170d4d1e00ebc16f898c093fbf094667058d7cd9
Author: Arnaud Cornet <[email protected]>
Date: Wed Jan 21 17:24:54 2009 +0100
[FEATURE] autojoin_on_kick in connection blocks
true by default
commit afefc9a3d4590f488e3ffba3c9d016c0c335ef13
Author: Arnaud Cornet <[email protected]>
Date: Tue Jan 20 19:30:20 2009 +0100
[FIX] Try to guess current daylight saving time
When backloging we have no clue of a log lines dst, we try to guess it
with current dst, which makes no sense, but at least it provides decent
result when not near dst change.
commit 500d5467069657c8258696d82cbc8a384ae0ddd8
Author: Arnaud Cornet <[email protected]>
Date: Sun Jan 18 12:26:41 2009 +0100
[FIX] improper log rotation
disconnection/reconnection log message bypassed the log rotation checks
So if the message after a new day is a disconnected message, logs files
did not rotate.
commit 7a7c2432cf3fcffc8c78585d95c7c3a2d08e565d
Author: Arnaud Cornet <[email protected]>
Date: Sun Jan 18 11:26:08 2009 +0100
[FIX] make log_has_backlog actually work
log_has_backlog used to check for the presnece of tracked logfiles to
determine the presence of logs. This does not work anymore. This patch
uses the last file tracker to determine that.
commit 9882a0cbdc7c3235a9df211b04dc47e8d1bbb846
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 17 15:03:06 2009 +0100
[CLEANUP] various cleanups
commit fe251f72b5267f0223a0fe76910ffd215c34c40e
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 17 14:16:31 2009 +0100
[FEATURE] /quote bip backlog [n]
/quote bip backlog triggers a log replay.
With the optional argument n in hours, you can request a backlog of a
few hours.
commit 26eb9c28d7f81cbf6402117a9910ce430a2f29dc
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 17 12:50:39 2009 +0100
[OPTION] implement backlog_reset_connection
backlog_reset_on_talk no works per query/channel.
Setting backlog_reset_connection to true falls back to the former kind
of backlog reset.
commit 0e2f305d4edcee4c00b5c638681473ecd95062b2
Author: Arnaud Cornet <[email protected]>
Date: Fri Jan 16 15:17:34 2009 +0100
[cleanup] Try to cleanup this pid mess
close files, but no too soon...
commit 2d9d388fba14659e5052a8658a1f36a257a84ad0
Author: Arnaud Cornet <[email protected]>
Date: Fri Jan 16 15:09:53 2009 +0100
Close some fds, original path from Trou.
commit 7565b9cb8ef708cb21bb4ce40f2378c750055853
Author: Arnaud Cornet <[email protected]>
Date: Fri Jan 16 15:09:22 2009 +0100
typos
commit 111f1382d1b1e160a1edf6a52c4b4d9f6415b529
Author: Trou <[email protected]>
Date: Fri Jan 16 14:45:31 2009 +0100
Fix fd leak
commit b912282410dd701abf353e7d197ef49b31bd55cf
Author: Arnaud Cornet <[email protected]>
Date: Fri Jan 16 12:30:24 2009 +0100
optionnal -> optional
commit 3b704f53c4cbc849d0a83cf171393930280a9d76
Author: Arnaud Cornet <[email protected]>
Date: Thu Jan 15 22:56:42 2009 +0100
drop unused variables
commit be0d83d681b5ebce5b6d9fe53121e04ef6792227
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 10 14:16:36 2009 +0100
Remove code inside #if 0... it's what svcs are for
commit 8ed0565266040c53043e8a875d86d61bd6c09096
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 10 14:08:41 2009 +0100
[LOG] Fixup log_beautify to work beautifully :)
commit a5814b17a03902648acf66a958c6434dc792a104
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 10 13:34:40 2009 +0100
Don't log queries with -bip, fix blreset help
commit b3d7dbfb02f18f8858f0ce335191826013ce10a9
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 10 13:26:59 2009 +0100
[COSMETIC] Avoid opening a query with your own nic
This exception is cosmetic, but you want it. Most of the time, you get
backlog from your own nick for your mode changes only. Hence opening a
query just to say "end of backlog"...
commit 744ea7d03b5adb4ea36f547d326cbd3262ed2ddf
Merge: f536a05 67ddf15
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 10 12:55:13 2009 +0100
Merge branch 'master' into bip08
commit 67ddf152647e178d97359907782375d30586ca5f
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 10 12:53:25 2009 +0100
[BUG] channel with key handling
A bug existed when a client issued join commands with multiple keys:
JOIN #a,#b keya,keyb
which this patch fixes
commit f536a0546d113436bcc690708049ecb1a4aefeaf
Author: Arnaud Cornet <[email protected]>
Date: Sat Jan 10 12:35:59 2009 +0100
Cleanup and fixes of the backlog code
commit 32cf2d462f54f06b59a1a5d635e01b5da0f4492a
Author: Arnaud Cornet <[email protected]>
Date: Fri Jan 9 13:24:11 2009 +0100
Backlogging code cleanup: fixes
This makes the new backlogging code, actually backlog something.
commit f1221703b06da28696b5f0e607f1f99abcf1c351
Author: Arnaud Cornet <[email protected]>
Date: Fri Jan 9 11:26:12 2009 +0100
[FEATURE] reset backlog on talk now "window" local
The reset_backlog_on_talk now resets current query or channel.
The /bip blreset command not takes an optional argument taking query
name or channel name.
commit a6bb697f5da9016c65bf8dd39767d12a4422b6c3
Merge: 0600196 d2f7840
Author: Arnaud Cornet <[email protected]>
Date: Fri Jan 9 09:57:17 2009 +0100
Merge branch 'master' into bip08
Conflicts:
src/log.c
commit d2f7840ced065d644ba626413f5e53900efb39ef
Author: Arnaud Cornet <[email protected]>
Date: Thu Jan 8 11:01:47 2009 +0100
[BUG] Fix fatal on some nick change
When a nick changes to one for which we already have a logstore
allocated. We try to overwrite a hash entry that is already existing
leading to a fatal.
This pach cleans things up before rename the logstore.
commit a57e76f883c8d7f138fb61eb2c8edc66413c7012
Author: Arnaud Cornet <[email protected]>
Date: Tue Jan 6 16:34:17 2009 +0100
add fclose on pid file
commit eb57d9683d95ea49868f984ad2c2cd93e85fc351
Author: Arnaud Cornet <[email protected]>
Date: Tue Jan 6 16:28:06 2009 +0100
Drop some unused variable.
commit 41c0a5a9c6d5d403445ad9bac18823bae9c49b10
Author: Arnaud Cornet <[email protected]>
Date: Tue Jan 6 15:58:18 2009 +0100
Fix bip_notify usage
These may lead to crash if you call in your conf networks or other names
with %s or other fancy format strings.
commit 06001961021beff6aca472b7456078651bad8f2e
Merge: 3f895fa 217816c
Author: Arnaud Cornet <[email protected]>
Date: Mon Jan 5 23:24:49 2009 +0100
merge master
commit 217816c220905365b323acee8c81a67917e26d08
Author: Arnaud Cornet <[email protected]>
Date: Mon Jan 5 22:57:27 2009 +0100
And anothear nick_from_ircmask leak.
commit 00a10a9f610cda3d186ac464ba6b485b52db94b2
Author: Arnaud Cornet <[email protected]>
Date: Mon Jan 5 22:56:01 2009 +0100
Fix another leak.
commit 96a91cd92e6aab1c04587e5c3a77bfefcb89adff
Author: Arnaud Cornet <[email protected]>
Date: Mon Jan 5 22:54:10 2009 +0100
Fix leak during backlog.
commit aab5e61c050d28ae049d46d2a50781c4a2b6fd94
Author: Arnaud Cornet <[email protected]>
Date: Mon Jan 5 22:52:25 2009 +0100
Fix leak.
commit 2ef3506a22deb016055d66d2c036976028d948a1
Author: Arnaud Cornet <[email protected]>
Date: Tue Dec 30 11:12:52 2008 +0100
Remove useless null check. Cycle server on early connection problem.
commit 0ecb77617cedbf0b82c9f1ed78af61d47a6c3a32
Author: Arnaud Cornet <[email protected]>
Date: Mon Dec 29 15:31:32 2008 +0100
Sanitize bip_(m|re)alloc size.
commit b9f86d544d6422f61870f1326cf1197a959530fb
Author: Arnaud Cornet <[email protected]>
Date: Mon Dec 29 14:07:09 2008 +0100
Add autoheader in boostrap script.
commit a4b101cea82654ab3eb028b794b8776238ddd82c
Author: Arnaud Cornet <[email protected]>
Date: Mon Dec 29 14:04:51 2008 +0100
ensure null terminated str
commit 3f895fa6ea4632f4fb6e28d539410ad4b1123c46
Merge: c0db3c4 5a5f1b8
Author: Arnaud Cornet <[email protected]>
Date: Mon Dec 29 09:15:44 2008 +0100
Merge branch 'master' into bip08
commit 5a5f1b8bfbbdca16b141b776593721b4c2fdcf00
Author: Arnaud Cornet <[email protected]>
Date: Mon Dec 29 09:15:27 2008 +0100
Some autoconf magic fix
commit 8d7eecf78bb45b4205abd14923a3b3a3ce59b0e9
Author: Arnaud Cornet <[email protected]>
Date: Mon Dec 29 09:14:24 2008 +0100
Fix fatal Element with key %s already in hash
on client disconnect.
bad hash usage
commit b222196b18b6854963c625f874457aa520b3955b
Author: Arnaud Cornet <[email protected]>
Date: Sun Dec 28 15:47:43 2008 +0100
Use backtrace when --enable-debug=yes and avail.
I KNOW AUTOCONF.
commit c0db3c408dfb6ebbd01d481bf00e33eb0c26706e
Merge: 3c810ee 24110a5
Author: Arnaud Cornet <[email protected]>
Date: Sun Dec 28 14:47:44 2008 +0100
Merge fixups
commit 24110a58dc0e5c38751ffdfd698360f45b5e65d2
Author: Arnaud Cornet <[email protected]>
Date: Sun Dec 28 14:45:44 2008 +0100
Fix leak + cleanup list_append.
Thanks to TheMIROn for spotting the leak.
commit 3c810eef53be514d76109a94b7e35579585408e3
Author: Arnaud Cornet <[email protected]>
Date: Fri Dec 26 18:43:35 2008 +0100
Refactor log system. prepare for /backlog 1 hour
commit 8693044511a2129a3b24c9fd7c20f38972c971f3
Author: Arnaud Cornet <[email protected]>
Date: Fri Dec 26 08:56:03 2008 +0100
fix notice logging file storage
commit 20ce456e385cf843aca99e58c0f92af595151420
Author: Arnaud Cornet <[email protected]>
Date: Thu Dec 25 18:34:36 2008 +0100
Work out autoconf magic
Now --disable-ssl works as expected.
The bug is there since bip uses autoconf. CHAMPAGNE.
commit b102aed08a511e283aab1850fd955163d3758208
Author: Arnaud Cornet <[email protected]>
Date: Thu Dec 25 17:49:48 2008 +0100
array_extract: fix braindeadness.
commit 7c6cc20e90dc073763cab3550b6f921c98bcfb02
Author: Arnaud Cornet <[email protected]>
Date: Sat Dec 20 21:15:04 2008 +0100
Use hash_it_key cause now hash items can be null.
commit fa78df648265955586e3013940f41218a02a2434
Author: Arnaud Cornet <[email protected]>
Date: Sat Dec 20 20:26:38 2008 +0100
Fixup file name allocation
commit e8bb841e5f04c6dd4982919d3a515bbbe8f136a0
Author: Arnaud Cornet <[email protected]>
Date: Sat Dec 20 17:59:16 2008 +0100
refactor nick management code
- drop struct nick.
- follow nick changes in a basic way.
right now it does not work if one changes nick and somebody else takes
the old unused nick.
commit 4d231e8ddce7881321a77e4bd20d43cd278590df
Author: Arnaud Cornet <[email protected]>
Date: Sat Dec 20 14:28:18 2008 +0100
Inline most array methods
commit d3ef106c4f717ab696a32c44c668368f3c18608d
Author: Arnaud Cornet <[email protected]>
Date: Sat Dec 20 14:20:50 2008 +0100
New array type, cleanupts and rename logfilegroup log_store
commit 4b723ca4798a2a60e84bbd2d92f68d1cfa2c8a66
Author: Arnaud Cornet <[email protected]>
Date: Thu Dec 18 14:27:16 2008 +0100
more cleanups, start of a log refactoring
That changes log format and might breack everything.
commit fd644b312bb0b2d1b9689ce9de88fe81dcc4f33c
Author: Arnaud Cornet <[email protected]>
Date: Mon Dec 15 20:02:56 2008 +0100
bip_strdup fatals on out of memory
commit c1501510662acec2ddc5f316546cef4f6e0d043f
Author: Arnaud Cornet <[email protected]>
Date: Mon Dec 15 19:19:27 2008 +0100
BIG cleanup. check for memory allocation failure, add extra checks all arround.
commit e18d335578b63f888c9d9fec178c39f8f40c8b2f
Author: Arnaud Cornet <[email protected]>
Date: Thu Dec 11 11:00:05 2008 +0100
calloc/realloc checks.
commit 2b96805ecb40862ff2c6927a72da20327f008ab2
Author: Arnaud Cornet <[email protected]>
Date: Wed Dec 10 23:27:53 2008 +0100
Revert "drop fork priviledges when running."
This reverts commit 1cbb1b9b7aa228704db91b942b6105e848a4eed0.
It juste does not work, since this limit is uid-wide (thanks julien`)
commit 3ab27557679d766571ba5cacb9012dca60b60fcc
Author: Arnaud Cornet <[email protected]>
Date: Wed Dec 10 23:26:37 2008 +0100
Catch malloc returning NULL.
commit c3bb6639b68529ba34a8e6def5dbcb086b41e682
Author: Vladislav Grishenko <[email protected]>
Date: Sun Nov 23 15:12:32 2008 +0100
Send after join /names before backlog
there're some irc client which create windows, session etc only on 366
packet received (End of /NAMES list) like Miranda IM, QIP
that's why backlog sent from bip after 332/333 packets and just before
353/336 goes to nowhere
i'v took a look at other irc bouncers, all of them send backlog right
after 353 /336 packets
so, all what we need is just chamge the order in
static void irc_send_join(struct link_client *ic, struct channel *chan)
commit 0f0d0427b8303414a7058cfe8f867837118c17f0
Author: Arnaud Cornet <[email protected]>
Date: Sun Nov 23 15:09:24 2008 +0100
Enlarge connection buffer size and logline_maxlen.
commit c21db5a556df2e1b647a32b811fe1db73cbc4982
Author: theMIROn <[email protected]>
Date: Tue Nov 11 16:07:42 2008 +0100
Fix for empty topic creator and timestamp on RusNet IRC Servers
commit 383a3a4477387392d50e245b049cf0c5e0490505
Author: Arnaud Cornet <[email protected]>
Date: Sun Nov 9 19:05:49 2008 +0100
Fix help message: bip reload is quite stable for some time now.
commit 1cbb1b9b7aa228704db91b942b6105e848a4eed0
Author: Arnaud Cornet <[email protected]>
Date: Fri Oct 31 19:38:12 2008 +0100
drop fork priviledges when running.
commit e8c6adedc9d782ef35968cc7b68c21c5fbb3f7c6
Author: Arnaud Cornet <[email protected]>
Date: Fri Oct 24 10:24:52 2008 +0200
Add -git to version string.
commit fcfea9921a55455bba7ad5f0e616170e228b885a
Author: Arnaud Cornet <[email protected]>
Date: Fri Oct 24 10:24:49 2008 +0200
Update src/version.h and Changelog for release.
commit cd82512f7a5f2d708c87e486cbf48ed2d933287b
Author: Arnaud Cornet <[email protected]>
Date: Fri Oct 24 09:11:23 2008 +0200
Ignore nick channel status in whorepl. Fix crash on client empty privmsg.
commit f6582a54b294d6fb1f68e6e732aff3b8702e70df
Author: Arnaud Cornet <[email protected]>
Date: Fri Oct 24 00:08:47 2008 +0200
bipgenconfig: generate 4096 bit rsa keys
commit 83b19b7c5a002a64259441f4dc4af743b560eafd
Author: Arnaud Cornet <[email protected]>
Date: Wed Oct 8 01:04:14 2008 +0200
Hack around to make halfop support actually work.
commit ed92b9a8bdc19587549de8d480d47a25511bddb4
Author: Arnaud Cornet <[email protected]>
Date: Wed Oct 8 00:05:26 2008 +0200
Build fix
commit 8ba984165b0fd464a9730c41e975f3b24f1da187
Author: Arnaud Cornet <[email protected]>
Date: Sat Sep 20 14:48:16 2008 +0200
Implement quick halfop tracking support.
commit ddacb833dd99df287853db3c97c71c17c491182b
Author: Arnaud Cornet <[email protected]>
Date: Sat Jun 28 18:59:19 2008 +0200
Add -git to version string.
commit 412cddaf519e78dba62afac3ecc28a0b85011ce8
Author: Arnaud Cornet <[email protected]>
Date: Sat Jun 28 18:59:15 2008 +0200
Update src/version.h and Changelog for release.
commit babaac246d9d05a0c555823be16e8827561b2da8
Author: Sebastian Hagen <[email protected]>
Date: Tue Jun 24 20:27:12 2008 +0200
Do not freak out when seeing unreal ircd wierd name flags.
commit 81239265b9732177bfa2de785399528e5c79317a
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 1 11:11:30 2008 +0200
Add -git to version string.
commit 1fb6c2a164f7aeeb556015b68dfc80357b6723b2
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 1 11:11:28 2008 +0200
Update src/version.h and Changelog for release.
commit 9ab6e6e125ba33aba50b261a2dc09ebf58c6db9c
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 1 11:11:08 2008 +0200
Update src/version.h and Changelog for release.
commit 35e581244813c7db42c0267f0189c270a24c0577
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 1 11:11:03 2008 +0200
Make jj's patch build
commit e863227099e4fdd60bf5c6a87e2a274d4c89d683
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 1 11:05:22 2008 +0200
Fix probable but rare memory leak
commit 3f9d1621293176ca489c341ccde154eff8c28437
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 1 10:56:16 2008 +0200
Add -git to version string.
commit 9fcbe8a6aa9ef113b721c97139f1e1d6af91a64c
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 1 10:56:12 2008 +0200
Update src/version.h and Changelog for release.
commit fc546e9db8ddf63b92d9cab5743148fb787d0953
Author: Arnaud Cornet <[email protected]>
Date: Sun Jun 1 10:27:52 2008 +0200
Support channel modes q and I (oftc)
commit 604eb26ec6fa46b7840d03208da1bb8a1f78a727
Author: Arnaud Cornet <[email protected]>
Date: Sat May 31 12:31:30 2008 +0200
Merge jj's patch (debian bug 481488)
commit d92ffeea09a7a725ec16e15735f4b18670878187
Author: Arnaud Cornet <[email protected]>
Date: Sat May 31 12:24:56 2008 +0200
Update todo
commit 4b2a0eb935101e353d9d510f4a53da77c04c67bd
Author: Arnaud Cornet <[email protected]>
Date: Sat Apr 5 11:55:42 2008 +0200
Add -git to version string.
commit 39d2850ad722d5df4f4d42206b1d757bde690c84
Author: Arnaud Cornet <[email protected]>
Date: Sat Apr 5 11:55:40 2008 +0200
Update src/version.h and Changelog for release.
commit dbcd0aad07cf3f0ccdd2b59d827535e80d99c1e2
Author: Arnaud Cornet <[email protected]>
Date: Sat Apr 5 11:44:15 2008 +0200
Fix build on systems without RLIMIT_AS (eg OpenBSD).
commit f618d05af831cc7691b15a997dcfada0dd30a4cb
Author: Arnaud Cornet <[email protected]>
Date: Wed Apr 2 23:56:21 2008 +0200
Merge bip.conf.5 fix from debian.
commit 82dbe852f8833a875b0509d1532e4f8c9fb2725b
Author: Arnaud Cornet <[email protected]>
Date: Wed Apr 2 23:49:51 2008 +0200
Add -git to version string.
commit 37a44139d11dc48691bdd7ce1ea424c94fc241af
Author: Arnaud Cornet <[email protected]>
Date: Wed Apr 2 23:49:48 2008 +0200
Update src/version.h and Changelog for release.
commit 2cbf377cc2ce387ed2542a0c2c7a2b45c38ba58d
Author: Arnaud Cornet <[email protected]>
Date: Wed Apr 2 23:41:27 2008 +0200
Fix default nick/user/realname check
(debian bug 473999).
allow ssl_check_mode = none.
tweak HOME handling.
Most of this is Yoann Guillot's work.
commit e383c2b6f6c69bf71010621b5e9f2be875b92971
Merge: d7430d4 6cee8c7
Author: Loïc Gomez <[email protected]>
Date: Sat Feb 16 13:50:40 2008 +0100
Merge branch 'master' of http://bip.t1r.net/bip
commit 6cee8c728f4465e2cb185d2e32e1d6587c063a41
Author: Arnaud Cornet <[email protected]>
Date: Sat Feb 16 11:33:00 2008 +0100
bip-release glitch fix.
commit 303503cfc75634b891664afa00ccdad290e464bc
Author: Arnaud Cornet <[email protected]>
Date: Sat Feb 16 11:32:13 2008 +0100
Post release leak fix. :)
commit 2516a89ac873cc04dc2403b9b3400a5125cc6828
Author: Arnaud Cornet <[email protected]>
Date: Fri Feb 15 23:59:35 2008 +0100
Add -git to version string.
commit eb1dbb1023ca4d5c207936e1e7f39aa323eebe2c
Author: Arnaud Cornet <[email protected]>
Date: Fri Feb 15 23:59:30 2008 +0100
Update src/version.h and Changelog for release.
commit d7430d44cc780384507bef5bb3f1a4c3e1cc6315
Author: Loïc Gomez <[email protected]>
Date: Mon Feb 11 13:10:42 2008 +0100
SSL:
- make bip compile with --disable-ssl configuration
commit ba4e70d6647cab63471391649adc7d5029d43228
Author: Loïc Gomez <[email protected]>
Date: Mon Feb 4 18:38:09 2008 +0100
fix unwanted commit
commit efe0c43b9cdd3c0a4d1183678b36e2c33d7383fa
Author: Loïc Gomez <[email protected]>
Date: Mon Feb 4 18:36:35 2008 +0100
Documentation fixes
- update bip.vim and bip.conf sample files
- remove nonsense LOG_STD log level
commit 89e88f6b7ba73eabe11d1dfae11131a9095248c2
Author: Loïc Gomez <[email protected]>
Date: Mon Feb 4 18:07:27 2008 +0100
/BIP commands:
- fix "(admin)" info inverted in /BIP list users
commit fd5e483a499d8b4986128e9be7bcb70cc8315c8a
Author: Arnaud Cornet <[email protected]>
Date: Sun Feb 3 11:55:24 2008 +0100