forked from eric/syslog-ng-3.3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2999 lines (1884 loc) · 86.4 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
# do not edit -- automatically generated by arch changelog
# arch-tag: [email protected]/syslog-ng--mainline--2.0
#
2007-04-06 09:59:15 GMT Balazs Scheidler <[email protected]> patch-149
Summary:
use stat instead of seek to determine file size
Revision:
syslog-ng--mainline--2.0--patch-149
* src/logreader.c (log_reader_fd_check): remove lseek based file
size determination and use lseek instead, it is not glibc that is
buggy, and although gdb reports invalid contents of the stat
results, the program sees them correctly
modified files:
ChangeLog src/logreader.c
2007-04-06 09:08:49 GMT Balazs Scheidler <[email protected]> patch-148
Summary:
added support for logrotation in file sources
Revision:
syslog-ng--mainline--2.0--patch-148
2007-04-06 Balazs Scheidler <[email protected]>
* src/affile.c (affile_sd_open_file): new function, contains the
file open code for the source driver,
(affile_sd_notify): new function, registered as the notification
handler for an affile source, for NC_FILE_MOVED notifications
construct a new the log reader and drop the old one,
(affile_sd_init): use affile_sd_open_file,
(affile_sd_new): register notification handler, tell our LogReader
the filename that we are following
modified files:
ChangeLog src/affile.c src/afsocket.c src/logpipe.h
src/logreader.c src/logreader.h src/messages.h
2007-04-05 11:27:02 GMT Balazs Scheidler <[email protected]> patch-147
Summary:
fixed expansion of utf-8 characters in templates
Revision:
syslog-ng--mainline--2.0--patch-147
* src/macros.c (result_append): use guchar as the type of the
argument instead of gchar
* tests/unit/test_templates.c: use utf8 sequences in the message
string to ensure that syslog-ng handles them properly
modified files:
ChangeLog src/macros.c tests/unit/test_template.c
2007-04-04 14:44:29 GMT Balazs Scheidler <[email protected]> patch-146
Summary:
fixed numeric localport/destport specification
Revision:
syslog-ng--mainline--2.0--patch-146
* src/afinet.c (afinet_set_port, afinet_sd_set_localport,
afinet_dd_set_localport, afinet_dd_set_destport): removed port
argument, always use 'service' and check if it's numeric
* src/cfg-grammar.y: follow afinet changes
modified files:
ChangeLog src/afinet.c src/afinet.h src/cfg-grammar.y
2007-04-02 06:53:54 GMT Balazs Scheidler <[email protected]> patch-145
Summary:
grammar fixes for localport/port/destport parsing options
Revision:
syslog-ng--mainline--2.0--patch-145
* src/cfg-grammar.y: fixed grammar to parse port related options correctly
modified files:
ChangeLog src/cfg-grammar.y
2007-03-26 12:28:53 GMT Balazs Scheidler <[email protected]> patch-144
Summary:
preparations for 2.0.3 release
Revision:
syslog-ng--mainline--2.0--patch-144
modified files:
ChangeLog NEWS VERSION
2007-03-26 12:28:31 GMT Balazs Scheidler <[email protected]> patch-143
Summary:
increased the minimum value for log_fifo_size to 1000
Revision:
syslog-ng--mainline--2.0--patch-143
modified files:
ChangeLog src/cfg.c src/logsource.h src/logwriter.c
2007-03-21 16:36:01 GMT Balazs Scheidler <[email protected]> patch-142
Summary:
fixed dns_cache_hosts() typo in documentation
Revision:
syslog-ng--mainline--2.0--patch-142
modified files:
ChangeLog doc/reference/syslog-ng.xml
2007-03-19 17:41:46 GMT Balazs Scheidler <[email protected]> patch-141
Summary:
some more message clarification
Revision:
syslog-ng--mainline--2.0--patch-141
modified files:
ChangeLog src/main.c
2007-03-19 17:35:37 GMT Balazs Scheidler <[email protected]> patch-140
Summary:
clarified internal message severities
Revision:
syslog-ng--mainline--2.0--patch-140
* src/*.c: clarified the severity value of some log messages
generated by syslog-ng
modified files:
ChangeLog src/affile.c src/cfg-lex.l src/macros.c
src/messages.h
2007-03-05 11:33:09 GMT Balazs Scheidler <[email protected]> patch-139
Summary:
clarified message priorities
Revision:
syslog-ng--mainline--2.0--patch-139
modified files:
ChangeLog src/affile.c src/afinet.c src/cfg.c src/logwriter.c
src/stats.c
2007-03-04 11:03:22 GMT Balazs Scheidler <[email protected]> patch-138
Summary:
added support for remembering input file positions
Revision:
syslog-ng--mainline--2.0--patch-138
* configure.in: added LARGEFILE_SOURCE & FILE_OFFSET_BITS to
CPPFLAGS, export localstatedir to syslog-ng,
* src/affile.c (affile_sd_format_persist_name): new function,
formats the persistent name associated with the file source,
(affile_sd_init): check if the current file position is available
and set it if it is,
(affile_sd_deinit): save the current file position,
* src/afsocket.c (afsocket_sd_kill_connection_list): new function,
frees a connection list,
(afsocket_sd_deinit): fixed a possible SIGSEGV, a GList was freed as
an AFSocketSourceDriver, I wonder how this got unnoticed so far,
* src/cfg.c (persist_config_add_entry): new function,
(persist_config_add): use the new add_entry function,
(persist_config_add_survivor): new function, adds a surviving entry,
(PersistentConfig): added saving/loading persistent config entries,
* src/logreader.c (log_reader_watch_new): don't seek the file to the
end-of-file now as proper file position is recovered,
(log_reader_set_pos, log_reader_get_pos): new functions
* src/main.c (main): added --ignore-persistent option, use a
persistent configuration object around stop/start to save/restore
file position information
modified files:
ChangeLog configure.in src/affile.c src/afsocket.c src/cfg.c
src/cfg.h src/logreader.c src/logreader.h src/main.c
src/syslog-ng.h
2007-03-03 14:01:24 GMT Balazs Scheidler <[email protected]> patch-137
Summary:
tightened LogMessage struct, added support for more than 9 match groups
Revision:
syslog-ng--mainline--2.0--patch-137
* src/logmsg.h (LogMessage): structure tightened a bit, avoid
double-referencing various message-parts by inlining GString
declarations, instead of allocating them at runtime to be more cache
friendly, use 8 bit values for ref_cnt, flags, pri; re_matches is
allocated at runtime to allow more matches
* src/filter.c (filter_re_eval): dynamically allocate the
msg->re_matches array, follow LogMessage changes
* src/templates.c (log_template_compile): support ${} syntax for
regex match replacements to allow more than 9 matches
* src/afuser.c, src/logreader.c, src/logwriter.c, src/sgroup.c,
src/test_msgparse.c, src/test_template.c: follow LogMessage
changes
modified files:
ChangeLog src/afuser.c src/filter.c src/logmsg.c src/logmsg.h
src/logreader.c src/logwriter.c src/macros.c src/sgroup.c
src/templates.c tests/unit/test_msgparse.c
tests/unit/test_template.c
2007-02-28 09:21:01 GMT Balazs Scheidler <[email protected]> patch-136
Summary:
clarified SIGTERM message
Revision:
syslog-ng--mainline--2.0--patch-136
* src/main.c (main_loop_run): clarified message about the reception
of a SIGTERM or SIGINT signal
modified files:
ChangeLog src/main.c
2007-02-28 09:19:28 GMT Balazs Scheidler <[email protected]> patch-135
Summary:
updated copyright strings
Revision:
syslog-ng--mainline--2.0--patch-135
modified files:
ChangeLog src/affile.c src/affile.h src/afinet.c src/afinet.h
src/afinter.c src/afinter.h src/afprog.c src/afprog.h
src/afsocket.c src/afsocket.h src/afstreams.c src/afstreams.h
src/afunix.c src/afunix.h src/afuser.c src/afuser.h
src/center.c src/center.h src/cfg-lex.l src/cfg.c src/cfg.h
src/children.c src/children.h src/dgroup.c src/dgroup.h
src/dnscache.c src/dnscache.h src/driver.c src/driver.h
src/fdread.c src/fdread.h src/fdwrite.c src/fdwrite.h
src/filter.c src/filter.h src/gsockaddr.c src/gsockaddr.h
src/logmsg.c src/logmsg.h src/logpipe.c src/logpipe.h
src/logreader.c src/logreader.h src/logsource.c
src/logsource.h src/logwriter.c src/logwriter.h src/macros.c
src/macros.h src/main.c src/memtrace.c src/memtrace.h
src/messages.c src/messages.h src/misc.c src/misc.h
src/sgroup.c src/sgroup.h src/stats.c src/stats.h
src/syslog-names.c src/syslog-names.h src/syslog-ng.h
src/templates.c src/templates.h src/utils.c src/utils.h
2007-02-28 09:19:00 GMT Balazs Scheidler <[email protected]> patch-134
Summary:
implemented TCP wrapper support
Revision:
syslog-ng--mainline--2.0--patch-134
* configure.in: added tests for libwrap
* src/afsocket.c: added support for libwrap access control
modified files:
ChangeLog configure.in src/afsocket.c
2007-02-12 09:09:08 GMT Balazs Scheidler <[email protected]> patch-133
Summary:
added endutent() to usertty destination
Revision:
syslog-ng--mainline--2.0--patch-133
* src/afuser.c (afuser_dd_queue): added missing endutent call()
modified files:
ChangeLog src/afuser.c
2007-02-12 09:02:37 GMT Balazs Scheidler <[email protected]> patch-132
Summary:
removed 1024 byte limitation on internal messages
Revision:
syslog-ng--mainline--2.0--patch-132
* src/messages.c (msg_send_internal_message): use a dynamically
allocated buffer instead of a buffer with a fixed size on the stack
modified files:
ChangeLog src/messages.c
2007-02-12 09:01:43 GMT Balazs Scheidler <[email protected]> patch-131
Summary:
added testcases for 2007 DST changes
Revision:
syslog-ng--mainline--2.0--patch-131
* tests/unit/test_zone.c (main): added testcases for 2007 DST
changes in the USA
modified files:
ChangeLog tests/unit/test_zone.c
2007-02-03 17:24:40 GMT Balazs Scheidler <[email protected]> patch-130
Summary:
added dist.conf to dist
Revision:
syslog-ng--mainline--2.0--patch-130
modified files:
ChangeLog Makefile.am configure.in
2007-02-03 17:21:21 GMT Balazs Scheidler <[email protected]> patch-129
Summary:
further portability fixes
Revision:
syslog-ng--mainline--2.0--patch-129
* configure.in: added check for -lresolv
modified files:
ChangeLog configure.in
2007-02-03 17:16:17 GMT Balazs Scheidler <[email protected]> patch-128
Summary:
portability fixes for platforms without IPv6 support
Revision:
syslog-ng--mainline--2.0--patch-128
* configure.in: added checks for struct sockaddr_storage
* src/cfg-grammar.y: make sure it compiles even if AF_INET6 is not
defined
* src/cfg-lex.l: don't define udp6/tcp6 keywords if ENABLE_IPV6 is
not defined
* src/dnscache.c: added conditional blocks for IPv6 related code
* src/misc.c (resolve_hostname): -"-
* src/fdread.c (fd_do_read): use plain "struct sockaddr" if struct
sockaddr_storage is not defined
modified files:
ChangeLog configure.in src/cfg-grammar.y src/cfg-lex.l
src/dnscache.c src/fdread.c src/misc.c
2007-02-03 16:39:08 GMT Balazs Scheidler <[email protected]> patch-127
Summary:
implemented spoof-source support for both ipv4/ipv6
Revision:
syslog-ng--mainline--2.0--patch-127
* configure.in: added --with-libnet and --enable-spoof-source
options
* src/afinet.c (afinet_dd_set_spoof_source): new function, called
from the parser to enable spoof-source,
(afinet_dd_init): new function,
(afinet_dd_construct_ipv4_packet): -"-,
(afinet_dd_construct_ipv6_packet): -"-,
(afinet_dd_queue): -"-,
(affile_dd_new): register new init/queue methods,
* src/sgroup.h, src/dgroup.h: renamed ref/unref functions for
consistency
* src/cfg-lex.l, src/cfg-grammar.y: added spoof-source option
* src/logwriter.c (log_writer_format_log): removed static as it is
directly used by spoof-source to format messages
modified files:
ChangeLog README configure.in src/afinet.c src/afinet.h
src/afsocket.h src/center.c src/cfg-grammar.y src/cfg-lex.l
src/dgroup.h src/logwriter.c src/logwriter.h src/sgroup.h
2007-01-30 13:08:22 GMT Balazs Scheidler <[email protected]> patch-126
Summary:
added netinet/in.h to afinet.c
Revision:
syslog-ng--mainline--2.0--patch-126
* src/afinet.c: added inclusion of <netinet/in.h> as it caused
problems on HP-UX
modified files:
ChangeLog src/afinet.c
2007-01-29 08:56:55 GMT Balazs Scheidler <[email protected]> patch-125
Summary:
added check for getutent in configure
Revision:
syslog-ng--mainline--2.0--patch-125
* configure.in: added getutent() check
modified files:
ChangeLog configure.in src/afuser.c
2007-01-29 08:49:55 GMT Balazs Scheidler <[email protected]> patch-124
Summary:
integrated AIX packaging fixes from dev-folti
Revision:
syslog-ng--mainline--2.0--patch-124
Patches applied:
* [email protected]/syslog-ng--dev-folti--2.0--patch-2
Fixed: AIX5.2 packaging support. (fixes: #10375)
* [email protected]/syslog-ng--dev-folti--2.0--patch-3
Fixes: added libevtlog-dev build dependency. (fixes: #10375)
* [email protected]/syslog-ng--dev-folti--2.0--patch-5
Fixed: RPM packaging for 2.0. (fixes: #nobug)
* [email protected]/syslog-ng--dev-folti--2.0--patch-7
Refresh: Fixed: AIX5.2 packaging support. (fixes: #10375)
* [email protected]/syslog-ng--dev-folti--2.0--patch-8
Refresh: Fixes: added libevtlog-dev build dependency. (fixes: #10375)
* [email protected]/syslog-ng--dev-folti--2.0--patch-9
Refresh: Fixed: RPM packaging for 2.0. (fixes: #nobug)
* [email protected]/syslog-ng--dev-folti--2.0--patch-10
Fixed: removed duplicated install commanands from spec file. (fixes #nobug)
new files:
contrib/aix-packaging/.arch-ids/=id
contrib/aix-packaging/.arch-ids/syslog-ng.conf.id
contrib/aix-packaging/syslog-ng.conf
modified files:
ChangeLog contrib/Makefile.am syslog-ng.spec.bb.in
new directories:
contrib/aix-packaging contrib/aix-packaging/.arch-ids
new patches:
[email protected]/syslog-ng--dev-folti--2.0--patch-2
[email protected]/syslog-ng--dev-folti--2.0--patch-3
[email protected]/syslog-ng--dev-folti--2.0--patch-5
[email protected]/syslog-ng--dev-folti--2.0--patch-7
[email protected]/syslog-ng--dev-folti--2.0--patch-8
[email protected]/syslog-ng--dev-folti--2.0--patch-9
[email protected]/syslog-ng--dev-folti--2.0--patch-10
2007-01-29 08:48:19 GMT Balazs Scheidler <[email protected]> patch-123
Summary:
fixed possible crash in usertty() driver
Revision:
syslog-ng--mainline--2.0--patch-123
* src/afuser.c (afuser_dd_queue): don't ack the message if flow
control was off (fixes possible crash reported by Bryan Henderson)
modified files:
ChangeLog src/afuser.c
2007-01-26 09:23:49 GMT Pal Tamas <[email protected]> patch-122
Summary:
Synced to test
Revision:
syslog-ng--mainline--2.0--patch-122
modified files:
ChangeLog
2007-01-26 07:59:36 GMT Balazs Scheidler <[email protected]> patch-121
Summary:
missed version change
Revision:
syslog-ng--mainline--2.0--patch-121
modified files:
ChangeLog VERSION
2007-01-26 07:58:21 GMT Balazs Scheidler <[email protected]> patch-120
Summary:
preparations for 2.0.2
Revision:
syslog-ng--mainline--2.0--patch-120
modified files:
ChangeLog NEWS
2007-01-23 13:44:15 GMT Balazs Scheidler <[email protected]> patch-119
Summary:
fixed handling utmp entries where a full path is included as tty name
Revision:
syslog-ng--mainline--2.0--patch-119
* src/afuser.c (afuser_dd_queue): check if ut->ut_line starts with a
'/' and use it directly if it does, otherwise prepend '/dev/' as before.
modified files:
ChangeLog src/afuser.c
2007-01-19 21:00:06 GMT Balazs Scheidler <[email protected]> patch-118
Summary:
fixed trailing \0 and \n characters in messages received on dgram transport
Revision:
syslog-ng--mainline--2.0--patch-118
* src/logmsg.c (log_msg_parse): remove trailing \n and \0 characters
which are often added to the end of incoming datagrams
modified files:
ChangeLog src/logmsg.c
2007-01-07 16:51:40 GMT Balazs Scheidler <[email protected]> patch-117
Summary:
fixed parsing group information when not enclosed in quotes
Revision:
syslog-ng--mainline--2.0--patch-117
* src/cfg-grammar.y (string_or_number): use non-terminal string
instead of STRING to support non-quoted group specification
modified files:
ChangeLog src/cfg-grammar.y
2007-01-07 16:46:34 GMT Balazs Scheidler <[email protected]> patch-116
Summary:
fixed IPv6 related portability problem in DNS cache
Revision:
syslog-ng--mainline--2.0--patch-116
* src/dnscache.c (dns_cache_key_hash): don't use the unportable
s6_addr32 member in struct in6_addr, use an explicit cast instead
modified files:
ChangeLog src/dnscache.c
2006-12-22 10:07:57 GMT Balazs Scheidler <[email protected]> patch-115
Summary:
added tcp-keep-alive keyword for compatibility
Revision:
syslog-ng--mainline--2.0--patch-115
modified files:
ChangeLog doc/reference/syslog-ng.xml src/cfg-lex.l
2006-12-22 10:06:01 GMT Balazs Scheidler <[email protected]> patch-114
Summary:
updated documentation with so_keepalive option
Revision:
syslog-ng--mainline--2.0--patch-114
modified files:
ChangeLog doc/reference/syslog-ng.xml
2006-12-22 10:01:22 GMT Balazs Scheidler <[email protected]> patch-113
Summary:
added so_keepalive support
Revision:
syslog-ng--mainline--2.0--patch-113
* src/cfg-grammar.y: added KW_SO_KEEPALIVE keyword,
(socket_option): added KW_SO_KEEPALIVE rule
* src/afsocket.h (SocketOptions): added keepalive member,
* src/afsocket.c (afsocket_setup_socket): set SO_KEEPALIVE socket
option based on the keepalive parameter
modified files:
ChangeLog src/afsocket.c src/afsocket.h src/cfg-grammar.y
src/cfg-lex.l
2006-12-21 08:48:42 GMT Balazs Scheidler <[email protected]> patch-112
Summary:
fixed XML syntax error in refguide
Revision:
syslog-ng--mainline--2.0--patch-112
modified files:
ChangeLog doc/reference/syslog-ng.xml
2006-12-21 08:46:42 GMT Balazs Scheidler <[email protected]> patch-111
Summary:
bumped version to 2.0.1
Revision:
syslog-ng--mainline--2.0--patch-111
modified files:
ChangeLog VERSION
2006-12-21 08:45:35 GMT Balazs Scheidler <[email protected]> patch-110
Summary:
updated documentation with new dns cache options
Revision:
syslog-ng--mainline--2.0--patch-110
modified files:
ChangeLog doc/reference/syslog-ng.xml
2006-12-21 08:39:23 GMT Balazs Scheidler <[email protected]> patch-109
Summary:
NEWS preparations for syslog-ng 2.0.1
Revision:
syslog-ng--mainline--2.0--patch-109
modified files:
ChangeLog NEWS
2006-12-21 08:31:08 GMT Balazs Scheidler <[email protected]> patch-108
Summary:
obsoleted remove_if_older option in favour of overwrite_if_older
Revision:
syslog-ng--mainline--2.0--patch-108
* src/affile.{c,h}: renamed remove_if_older references to
overwrite_if_older
* src/cfg-lex.l, src/cfg-grammar.y: -"-
* doc/reference/syslog-ng.xml: added overwrite_if_older
documentation, added note about obsoleted remove_if_older()
modified files:
ChangeLog doc/reference/syslog-ng.xml src/affile.c
src/affile.h src/cfg-grammar.y src/cfg-lex.l
2006-12-21 08:21:49 GMT Balazs Scheidler <[email protected]> patch-107
Summary:
documentation updates on remove_if_older()
Revision:
syslog-ng--mainline--2.0--patch-107
modified files:
ChangeLog doc/reference/syslog-ng.xml
2006-12-18 09:01:46 GMT Balazs Scheidler <[email protected]> patch-106
Summary:
added include misc.h to afstreams.c
Revision:
syslog-ng--mainline--2.0--patch-106
* src/afstreams.c: added #include "misc.h"
modified files:
ChangeLog src/afstreams.c
2006-12-11 09:42:40 GMT Balazs Scheidler <[email protected]> patch-105
Summary:
removed bogus timezone error message for correct timezone values
Revision:
syslog-ng--mainline--2.0--patch-105
* src/cfg.c (cfg_timezone_value): readded erroneously removed return
statement which caused an error message for all timezone values
modified files:
ChangeLog src/cfg.c
2006-12-08 08:40:35 GMT Balazs Scheidler <[email protected]> patch-104
Summary:
removed 12 hour limitation from timezone offsets
Revision:
syslog-ng--mainline--2.0--patch-104
* src/cfg.c (cfg_timezone_value): removed 12 hours limitation as
offsets may well exceed that value (maximum is 24 hours)
* doc/reference/syslog-ng.xml: removed non-existing timezone()
option
modified files:
ChangeLog doc/reference/syslog-ng.xml src/cfg.c
2006-12-02 22:20:39 GMT Balazs Scheidler <[email protected]> patch-103
Summary:
added minimum version checking for glib/eventlog, also fixed a portability problem with non-gcc compilers in configure
Revision:
syslog-ng--mainline--2.0--patch-103
modified files:
ChangeLog configure.in
2006-11-30 09:49:22 GMT Balazs Scheidler <[email protected]> patch-102
Summary:
fixed a typo in the documentation, added sys/socket.h to dnscache.c
Revision:
syslog-ng--mainline--2.0--patch-102
modified files:
ChangeLog doc/reference/syslog-ng.xml src/dnscache.c
2006-11-27 10:55:47 GMT Balazs Scheidler <[email protected]> patch-101
Summary:
fixed the previously messed up commit
Revision:
syslog-ng--mainline--2.0--patch-101
modified files:
ChangeLog src/logmsg.c
2006-11-27 10:52:40 GMT Balazs Scheidler <[email protected]> patch-100
Summary:
fixed a compilation problem in logmsg.c
Revision:
syslog-ng--mainline--2.0--patch-100
* src/logmsg.c (log_msg_parse): fixed a bad assignment
modified files:
ChangeLog src/cfg-grammar.y
2006-11-16 14:15:50 GMT Balazs Scheidler <[email protected]> patch-99
Summary:
timezone offset calculation fix
Revision:
syslog-ng--mainline--2.0--patch-99
* src/logmsg.c (log_stamp_format): don't use the absolute value of
timezone offset,
(log_msg_parse): initialize tm.tm_gmtoff using a call to localtime()
instead of using memset(), fixed tv_sec calculation as it was not
really UTC which it should've been.
* tests/unit/test_msgparse.c: fixed time parsing testcases
modified files:
ChangeLog src/logmsg.c tests/unit/test_msgparse.c
2006-11-16 13:11:04 GMT Balazs Scheidler <[email protected]> patch-98
Summary:
fixed GLib static link configure test to work with non-gcc compilers
Revision:
syslog-ng--mainline--2.0--patch-98
* configure.in: fixed GLib static link configure test to work with
non-gcc compilers
modified files:
ChangeLog configure.in
2006-11-08 14:18:14 GMT Balazs Scheidler <[email protected]> patch-97
Summary:
fixed up dnscache unit test program
Revision:
syslog-ng--mainline--2.0--patch-97
modified files:
ChangeLog tests/unit/test_dnscache.c
2006-11-08 14:16:23 GMT Balazs Scheidler <[email protected]> patch-96
Summary:
implemented DNS cache and custom hosts file support
Revision:
syslog-ng--mainline--2.0--patch-96
* src/cfg-grammar.y: added KW_PERSIST_ONLY, KW_DNS_CACHE_HOSTS keywords, dnsmode rule,
removed tripleoption and related options, added
* src/cfg-lex.l: added dnscache specific new keywords,
* src/cfg.c (cfg_init): added a call to dns_cache_set_params,
(cfg_free): free dns_cache_hosts,
* src/main.c (main): call dns_cache_init() and dns_cache_destroy()
* src/misc.c (resolve_hostname): added DNS cache and persistent-only
resolution support
* src/sgroup.c (log_source_group_init): save dns cache params,
(log_source_group_queue): pass use_dns_cache param to resolve_hostname
* src/dnscache.{c,h}: new files
new files:
src/.arch-ids/dnscache.c.id src/.arch-ids/dnscache.h.id
src/dnscache.c src/dnscache.h
tests/unit/.arch-ids/test_dnscache.c.id
tests/unit/test_dnscache.c
modified files:
ChangeLog src/Makefile.am src/affile.h src/cfg-grammar.y
src/cfg-lex.l src/cfg.c src/cfg.h src/main.c src/misc.c
src/misc.h src/sgroup.c src/sgroup.h tests/unit/Makefile.am
2006-11-08 14:11:00 GMT Balazs Scheidler <[email protected]> patch-95
Summary:
don't fail at startup if network connection is down
Revision:
syslog-ng--mainline--2.0--patch-95
* src/afsocket.c (afsocket_open_socket): added an error message if
socket creation failed,
(afsocket_dd_start_reconnect_timer): new function, deregisters and
starts a new reconnect timer,
(afsocket_dd_connected): use afsocket_dd_start_reconnect_timer,
(afsocket_dd_start_connect): renamed from afsocket_dd_reconnect,
removed explicit timer registration,
(afsocket_dd_reconnect): new function, calls _start_connect and
registers the reconnect timer if that fails,
(afsocket_dd_init): afsocket_dd_reconnect does not return a value now