-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.1
1992 lines (1272 loc) · 56.7 KB
/
ChangeLog.1
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
# not-id: [email protected]/syslog-ng--mainline--2.0
#
2006-02-11 07:31:40 GMT Balazs Scheidler <[email protected]> patch-86
Summary:
fixed possible 64 bit compatibility problem
Revision:
syslog-ng--mainline--2.0--patch-86
* src/logwriter.c (log_writer_queue, log_writer_flush_log): use
GPOINTER_TO_UINT/GUINT_TO_POINTER macros instead of casting the
values by hand
modified files:
ChangeLog src/logwriter.c src/logwriter.h
2006-01-25 17:13:29 GMT Balazs Scheidler <[email protected]> patch-85
Summary:
added support for hostname resolution (fixes: #8036)
Revision:
syslog-ng--mainline--2.0--patch-85
2006-01-25 Balazs Scheidler <[email protected]>
* src/afinet.c: support an optional self->dest_addr
* src/afsocket.c (afsocket_dd_init): fail if self->dest_addr is NULL,
(afsocket_sd_init): fail if self->bind_addr is NULL
* src/gsockaddr.c (g_sockaddr_inet_new_resolve): new function,
resolves a hostname and stores the result in a GSockAddr,
modified files:
ChangeLog src/afinet.c src/afinet.h src/afsocket.c
src/gsockaddr.c src/gsockaddr.h
2006-01-20 10:01:44 GMT Balazs Scheidler <[email protected]> patch-84
Summary:
added stats counter sharing and a way to disable stats counter
Revision:
syslog-ng--mainline--2.0--patch-84
2006-01-20 Balazs Scheidler <[email protected]>
* src/stats.c (stats_register_counter): added shared parameter to
specify that the given counter can be shared
* src/logwriter.h (LogWriterOptions): added flags member and two
flags LWOF_NO_STATS, LWOF_SHARED_STATS
* src/logwriter.c (log_writer_options_init): converted fixed_stamp
parameter to a flag word, the actual value is LWOF_FIXED_STAMP,
(log_writer_init): don't register a stats counter if LWOF_NO_STAMP
is specified
* src/af*.c: changed the call of log_writer_options_init()
modified files:
ChangeLog src/affile.c src/afprog.c src/afsocket.c
src/logwriter.c src/logwriter.h src/stats.c src/stats.h
2006-01-13 13:17:29 GMT Balazs Scheidler <[email protected]> patch-83
Summary:
added compatibility option for stats
Revision:
syslog-ng--mainline--2.0--patch-83
2006-01-13 Balazs Scheidler <[email protected]>
* src/cfg-lex.l: added a "stats" keyword to be compatible with 1.6.x
modified files:
ChangeLog src/cfg-lex.l
2005-12-31 14:09:13 GMT Balazs Scheidler <[email protected]> patch-82
Summary:
fixed EOF detected messages for UDP destinations where the target is unreachable
Revision:
syslog-ng--mainline--2.0--patch-82
2005-12-31 Balazs Scheidler <[email protected]>
* src/afsocket.c (afsocket_dd_init): don't set LW_DETECT_EOF for UDP
destinations
* src/logwriter.c (log_writer_fd_dispatch): EOF is detected only if
G_IO_IN is detected and not for G_IO_ERR as it might be set for UDP
destinations when they are unreachable
modified files:
ChangeLog src/afsocket.c src/logwriter.c
2005-12-20 20:52:38 GMT Balazs Scheidler <[email protected]> patch-81
Summary:
perparations for an 1.9.8 release
Revision:
syslog-ng--mainline--2.0--patch-81
modified files:
ChangeLog NEWS VERSION
2005-12-20 20:34:51 GMT Balazs Scheidler <[email protected]> patch-80
Summary:
fixed UDP destination driver initialization
Revision:
syslog-ng--mainline--2.0--patch-80
2005-12-20 Balazs Scheidler <[email protected]>
* src/afsocket.c (afsocket_dd_connected): only check socket error
state for stream sockets as UDP connections succeed immediately,
(afsocket_dd_reconnect): if g_connect returns immediate success (UDP
connections) set self->fd to sock
modified files:
ChangeLog src/afsocket.c
2005-12-05 20:24:45 GMT Balazs Scheidler <[email protected]> patch-79
Summary:
fix time conversion to the specified timezone
Revision:
syslog-ng--mainline--2.0--patch-79
2005-12-05 Balazs Scheidler <[email protected]>
* src/logmsg.c (log_stamp_format): instead of substracting the
timezone offset substract it (credit for reporting goes to Andy),
* src/macros.c (log_macro_expand): -"-
* src/logmsg.c (log_msg_parse): time zone specifies can be more than
12 hours, fixed.
modified files:
ChangeLog src/logmsg.c src/macros.c
2005-12-03 16:42:19 GMT Balazs Scheidler <[email protected]> patch-78
Summary:
include VERSION in the dist
Revision:
syslog-ng--mainline--2.0--patch-78
modified files:
ChangeLog Makefile.am
2005-12-03 16:34:15 GMT Balazs Scheidler <[email protected]> patch-77
Summary:
fixed MARK support
Revision:
syslog-ng--mainline--2.0--patch-77
2005-12-03 Balazs Scheidler <[email protected]>
* doc/reference/syslog-ng.xml: added some more words on mark_freq()
and stats_freq(), actually fixed the documentation as these options
were renamed for consistency
* src/afinter.c: move MARK implementation to here instead of
logreader, there's no point in creating MARK messages in the name of
all of our sources, we need to generate a single MARK message in our
name if there's no traffic
* src/main.c: removed the use of obsolete GLib functions
modified files:
ChangeLog NEWS doc/reference/syslog-ng.xml src/afinter.c
src/afinter.h src/center.c src/logreader.c src/logreader.h
src/main.c
2005-12-03 15:49:30 GMT Balazs Scheidler <[email protected]> patch-76
Summary:
minor documentation updates, updated NEWS, bumped VERSION to 1.9.7
Revision:
syslog-ng--mainline--2.0--patch-76
modified files:
ChangeLog NEWS VERSION doc/reference/syslog-ng.xml
2005-12-03 15:29:36 GMT Balazs Scheidler <[email protected]> patch-75
Summary:
fixed a possible segmentation fault during HUPs
Revision:
syslog-ng--mainline--2.0--patch-75
2005-12-03 Balazs Scheidler <[email protected]>
* src/afsocket.c (afsocket_sc_init): fixed DGRAM socket
initialization to actually process incoming data in packets (the
LR_PKTTERM flag was missed),
(afsocket_sd_deinit): don't free the connection list items when
iterating the list as connections are removed from the list when
they are freed, the loop there only needs to break the circular
references
modified files:
ChangeLog src/afsocket.c
2005-12-03 11:23:55 GMT Balazs Scheidler <[email protected]> patch-74
Summary:
added VERSION file
Revision:
syslog-ng--mainline--2.0--patch-74
new files:
.arch-ids/VERSION.id VERSION
modified files:
ChangeLog
2005-12-03 11:23:46 GMT Balazs Scheidler <[email protected]> patch-73
Summary:
added debianization files, misc build fixes
Revision:
syslog-ng--mainline--2.0--patch-73
2005-12-03 Balazs Scheidler <[email protected]>
* debian/*: added debianization files
* configure.in: added VERSION file instead of having the actual
VERSION inline, added CURRDATE to make it possible to generate
debian/changelog automatically
new files:
debian/.arch-ids/=id debian/.arch-ids/README.Debian.id
debian/.arch-ids/changelog.in.id debian/.arch-ids/control.id
debian/.arch-ids/copyright.id debian/.arch-ids/rules.id
debian/.arch-ids/syslog-ng.conf.example.id
debian/.arch-ids/syslog-ng.conf.id
debian/.arch-ids/syslog-ng.default.id
debian/.arch-ids/syslog-ng.docs.id
debian/.arch-ids/syslog-ng.files.id
debian/.arch-ids/syslog-ng.init.id
debian/.arch-ids/syslog-ng.logcheck.ignore.id
debian/.arch-ids/syslog-ng.logrotate.example.id
debian/.arch-ids/syslog-ng.logrotate.id
debian/.arch-ids/syslog-ng.postinst.id
debian/.arch-ids/syslog-ng.postrm.id
debian/.arch-ids/syslog-ng.preinst.id debian/README.Debian
debian/changelog.in debian/control debian/copyright
debian/rules debian/syslog-ng.conf
debian/syslog-ng.conf.example debian/syslog-ng.default
debian/syslog-ng.docs debian/syslog-ng.files
debian/syslog-ng.init debian/syslog-ng.logcheck.ignore
debian/syslog-ng.logrotate debian/syslog-ng.logrotate.example
debian/syslog-ng.postinst debian/syslog-ng.postrm
debian/syslog-ng.preinst
modified files:
ChangeLog Makefile.am configure.in
new directories:
debian debian/.arch-ids
2005-11-25 15:25:19 GMT Balazs Scheidler <[email protected]> patch-72
Summary:
fixed Solaris STREAMS based log device support
Revision:
syslog-ng--mainline--2.0--patch-72
2005-11-25 Balazs Scheidler <[email protected]>
* src/afsocket.c (afsocket_dd_format_stats_name): fix compiler
warning about uninitialized driver_name, the switch statement
covers every possible case
* src/afstreams.c: fix compilation issues, it now actually compiles
and works on Solaris (tested on Solaris 9)
modified files:
ChangeLog configure.in src/afsocket.c src/afstreams.c
2005-11-23 16:31:48 GMT Balazs Scheidler <[email protected]> patch-71
Summary:
fixed timezone calculation
Revision:
syslog-ng--mainline--2.0--patch-71
2005-11-23 Balazs Scheidler <[email protected]>
* src/misc (get_local_timezone_ofs): fixed timezone calculation again,
* tests/unit/test_zone.c: added some missing testcases for timezones
over 12 hours (New Zealand)
* tests/unit/test_filters.c: fixed facility testing as the code was changed
modified files:
ChangeLog src/misc.c tests/unit/test_filters.c
tests/unit/test_zone.c
2005-11-15 15:35:15 GMT Balazs Scheidler <[email protected]> patch-70
Summary:
fixed the detetion of Solaris STREAMS support, fixed segfault when it was not compiled in
Revision:
syslog-ng--mainline--2.0--patch-70
modified files:
ChangeLog configure.in src/afstreams.c
2005-11-03 17:03:26 GMT Balazs Scheidler <[email protected]> patch-69
Summary:
fixed log message concatenation in certain cases
Revision:
syslog-ng--mainline--2.0--patch-69
2005-11-03 Balazs Scheidler <[email protected]>
* src/templates.c (log_template_format): truncate the string before
formatting a log message
modified files:
ChangeLog src/templates.c
2005-10-24 08:40:59 GMT Balazs Scheidler <[email protected]> patch-68
Summary:
readded syslog-ng.h as it was missed from the distribution
Revision:
syslog-ng--mainline--2.0--patch-68
modified files:
ChangeLog src/Makefile.am
2005-10-22 21:29:23 GMT Balazs Scheidler <[email protected]> patch-67
Summary:
stats.c & stats.h were not commited in the previous patch
Revision:
syslog-ng--mainline--2.0--patch-67
new files:
src/.arch-ids/stats.c.id src/.arch-ids/stats.h.id src/stats.c
src/stats.h
modified files:
ChangeLog
2005-10-22 21:28:46 GMT Balazs Scheidler <[email protected]> patch-66
Summary:
added per-destination dropped counters and some bugfixes
Revision:
syslog-ng--mainline--2.0--patch-66
2005-10-22 Balazs Scheidler <[email protected]>
* src/stats.{c,h}: new files, a simple framework for named
statistical counters, currently only used for per-destination
dropped counters
* src/message.c, src/messages.h (msg_event): the function was split
to msg_event_create and msg_event_send functions and macros were
changed accordingly, the reason is that the STATS message uses
dynamic message tags
* src/main.c (stats_timer): new function to issue statistics message
using the stats framework
* src/logwriter.h (LogWriterOptions): added stats_name member
which is used when registering the dropped counters,
(LogWriter): added dropped_messages member to point to our private
dropped counter
* src/logwriter.c (log_writer_init): register dropped counter,
(log_writer_free): deregister dropped counter,
(log_writer_options_init): store the name of the dropped counter,
added a warning message for the flush_lines > fifo_size case as this
will not work,
(log_writer_flush_log): call log_writer_broken when an error occurs,
(log_writer_broken): changed argument list to be usable from
log_writer_flush_log, log message moved out of the function as it
might be called from different places,
(log_writer_queue): increment dropped counter,
(log_writer_fd_prepare, log_writer_fd_check): fixed flush_timeout
handling
* src/Makefile.am: moved headers to SOURCES from EXTRA_DIST
(I like it better this way (tm))
* src/logpipe.h, src/logmsg.h: don't include glib.h directly, use
syslog-ng.h instead
* src/misc.c (format_zone_info): readded ':' to zone offset
formatting, which was missed in the previous patch, fixed the sign
for zone offsets
* src/logmsg.c (log_stamp_format): the buffer for the zone offset
was not large enough to hold the readded ':'
* src/cfg-grammar.y, src/cfg-lex.l: added global stats_freq option
* src/afprog.c, src/affile.c, src/afprog.c: added
dropped stats support
* src/afsocket.c: added dropped stats support,
(afsocket_dd_connected): do not reinit the writer,
(afsocket_dd_init): do not create a new LogWriter instance every
time, but reuse the previous one instead,
(afsocket_dd_free): fix memory leak by freeing self->writer
removed files:
src/.arch-ids/sdriver.c.id src/sdriver.c
modified files:
ChangeLog src/Makefile.am src/affile.c src/afprog.c
src/afsocket.c src/cfg-grammar.y src/cfg-lex.l src/logmsg.c
src/logmsg.h src/logpipe.h src/logwriter.c src/logwriter.h
src/main.c src/messages.c src/messages.h src/misc.c
2005-10-22 17:20:32 GMT Balazs Scheidler <[email protected]> patch-65
Summary:
do not use the LOG_FAC macro as it is not portable
Revision:
syslog-ng--mainline--2.0--patch-65
2005-10-22 Balazs Scheidler <[email protected]>
* src/filter.c: do not use the LOG_FAC macro, it is not available on
Solaris
* doc/reference/syslog-ng.xml: added documentation on the alternate
syntax of the facility() filter
modified files:
ChangeLog doc/reference/syslog-ng.xml src/filter.c
2005-10-21 16:07:47 GMT Balazs Scheidler <[email protected]> patch-64
Summary:
test commit for syslog-ng-commit message
Revision:
syslog-ng--mainline--2.0--patch-64
modified files:
ChangeLog src/logmsg.c
2005-10-18 15:40:14 GMT Balazs Scheidler <[email protected]> patch-63
Summary:
added a note on empty source/destination statements
Revision:
syslog-ng--mainline--2.0--patch-63
modified files:
ChangeLog doc/reference/syslog-ng.xml
2005-10-15 16:36:43 GMT Balazs Scheidler <[email protected]> patch-62
Summary:
fixed non-null terminated utmp username handling
Revision:
syslog-ng--mainline--2.0--patch-62
2005-10-15 Balazs Scheidler <[email protected]>
* src/afuser.c: instead of assuming that names in utmp are NUL
terminated (which turned out not to be true), limit the length of
comparison to sizeof(ut->ut_name)
modified files:
ChangeLog src/afuser.c
2005-10-15 16:15:57 GMT Balazs Scheidler <[email protected]> patch-61
Summary:
preparation for the 1.9.6 release
Revision:
syslog-ng--mainline--2.0--patch-61
modified files:
ChangeLog NEWS configure.in
2005-10-15 16:04:45 GMT Balazs Scheidler <[email protected]> patch-60
Summary:
fixed problems in syslog priority filter, added unit test for most built-in filters
Revision:
syslog-ng--mainline--2.0--patch-60
2005-10-15 Balazs Scheidler <[email protected]>
* src/filter.c (filter_facility_eval): added facility value ->
bitmap position cache for improved performance,
(filter_level_eval): fixed filter evaluation (the function
erroneously used the same values for the internal valid bitmap and
the syslog header priority value), a similar search through
sl_levels is required as was already present for facility filtering, also
the same cache mechanism was added for improved performance
* tests/unit/test_filter.c: new unit test file, tests most easily
testable filters, AND/OR operations and negation
new files:
tests/unit/.arch-ids/test_filters.c.id
tests/unit/test_filters.c
modified files:
ChangeLog configure.in src/filter.c tests/unit/Makefile.am
tests/unit/test_msgparse.c
2005-10-15 14:25:22 GMT Balazs Scheidler <[email protected]> patch-59
Summary:
timezone DST fixes
Revision:
syslog-ng--mainline--2.0--patch-59
2005-10-15 Balazs Scheidler <[email protected]>
* configure.in: removed check for the global timezone variable
* src/misc.c (get_local_timezone_ofs): use tm->tm_gmtoff if
available and the difference between the results of gmtime and
localtime if not, this should be a portable way to determine the
correct timezone offset,
(format_zone_info): new function to format a timezone offset in a
way similar to strftime %z
* src/logmsg.c (log_stamp_format): use the new format_zone_info
function
* src/macros.c (log_macro_expand): always use the new
format_zone_info function instead of strftime
* doc/reference/syslog-ng.xml: TZ is now equivalent to TZOFFSET
new files:
tests/unit/.arch-ids/test_zone.c.id tests/unit/test_zone.c
modified files:
ChangeLog configure.in doc/reference/syslog-ng.xml
src/logmsg.c src/macros.c src/misc.c src/misc.h
tests/unit/Makefile.am tests/unit/test_msgparse.c
2005-10-07 16:16:35 GMT Balazs Scheidler <[email protected]> patch-58
Summary:
added a missing "return"
Revision:
syslog-ng--mainline--2.0--patch-58
2005-10-07 Balazs Scheidler <[email protected]>
* src/misc.c (get_local_timezone_ofs): added a missing return
modified files:
ChangeLog src/misc.c
2005-10-05 13:48:34 GMT Balazs Scheidler <[email protected]> patch-57
Summary:
check for gmt_off in struct tm and detect timezone accordingly
Revision:
syslog-ng--mainline--2.0--patch-57
2005-10-05 Balazs Scheidler <[email protected]>
* configure.in: added a test for tm_gmtoff in struct tm as it is not
present on Solaris
* src/misc.c: use the old global timezone based timezone detection code
if tm_gmtoff is not present in "struct tm"
modified files:
ChangeLog configure.in src/misc.c
2005-10-01 21:39:51 GMT Balazs Scheidler <[email protected]> patch-56
Summary:
fixed facility/priority filters
Revision:
syslog-ng--mainline--2.0--patch-56
modified files:
ChangeLog src/filter.c
2005-09-26 09:16:38 GMT Balazs Scheidler <[email protected]> patch-55
Summary:
contrib subdirectory and its contents copied from syslog-ng 1.6.x
Revision:
syslog-ng--mainline--2.0--patch-55
new files:
contrib/.arch-ids/=id contrib/.arch-ids/Makefile.am.id
contrib/.arch-ids/README.id contrib/.arch-ids/init.d.HP-UX.id
contrib/.arch-ids/init.d.RedHat-7.3.id
contrib/.arch-ids/init.d.RedHat.id
contrib/.arch-ids/init.d.SuSE.id
contrib/.arch-ids/init.d.SunOS.id
contrib/.arch-ids/init.d.solaris.id
contrib/.arch-ids/relogger.pl.id
contrib/.arch-ids/syslog-ng.conf.HP-UX.id
contrib/.arch-ids/syslog-ng.conf.RedHat.id
contrib/.arch-ids/syslog-ng.conf.SunOS.id
contrib/.arch-ids/syslog-ng.conf.doc.id
contrib/.arch-ids/syslog-ng.vim.id
contrib/.arch-ids/syslog2ng.id contrib/Makefile.am
contrib/README contrib/fedora-packaging/.arch-ids/=id
contrib/fedora-packaging/.arch-ids/syslog-ng.conf.id
contrib/fedora-packaging/.arch-ids/syslog-ng.init.id
contrib/fedora-packaging/.arch-ids/syslog-ng.logrotate.id
contrib/fedora-packaging/.arch-ids/syslog-ng.sysconfig.id
contrib/fedora-packaging/syslog-ng.conf
contrib/fedora-packaging/syslog-ng.init
contrib/fedora-packaging/syslog-ng.logrotate
contrib/fedora-packaging/syslog-ng.sysconfig
contrib/init.d.HP-UX contrib/init.d.RedHat
contrib/init.d.RedHat-7.3 contrib/init.d.SuSE
contrib/init.d.SunOS contrib/init.d.solaris
contrib/relogger.pl contrib/rhel-packaging/.arch-ids/=id
contrib/rhel-packaging/.arch-ids/syslog-ng.conf.id
contrib/rhel-packaging/.arch-ids/syslog-ng.init.id
contrib/rhel-packaging/.arch-ids/syslog-ng.logrotate.id
contrib/rhel-packaging/syslog-ng.conf
contrib/rhel-packaging/syslog-ng.init
contrib/rhel-packaging/syslog-ng.logrotate
contrib/syslog-ng.conf.HP-UX contrib/syslog-ng.conf.RedHat
contrib/syslog-ng.conf.SunOS contrib/syslog-ng.conf.doc
contrib/syslog-ng.vim contrib/syslog2ng
modified files:
ChangeLog Makefile.am configure.in
new directories:
contrib contrib/.arch-ids contrib/fedora-packaging
contrib/fedora-packaging/.arch-ids contrib/rhel-packaging
contrib/rhel-packaging/.arch-ids
2005-08-30 07:35:56 GMT Balazs Scheidler <[email protected]> patch-54
Summary:
fixed template-escape processing for inline templates
Revision:
syslog-ng--mainline--2.0--patch-54
2005-08-30 Balazs Scheidler <[email protected]>
* src/affile.c (affile_dd_set_file_template,
affile_dd_set_template_escape, affile_dd_set_fsync): removed as
templates are logwriter specific options,
(affile_dd_new): do not allocate 'templates' variable,
(affile_dd_free): do not free 'templates'
* src/affile.h (AFFileDestDriver): removed template variable as it
was not used
* src/cfg-grammar.y (dest_writer_option): template_escape and fsync
were erroneously calling affile specific functions, fixed that
* src/logwriter.c (log_writer_options_set_template_escape): new function,
basically transformed from affile_dd_set_template_escape
modified files:
ChangeLog src/affile.c src/affile.h src/cfg-grammar.y
src/logwriter.c
2005-08-29 07:56:11 GMT Balazs Scheidler <[email protected]> patch-53
Summary:
added configure test for regexec() function
Revision:
syslog-ng--mainline--2.0--patch-53
modified files:
ChangeLog configure.in
2005-08-08 07:37:15 GMT Balazs Scheidler <[email protected]> patch-52
Summary:
fixed test_msgparse program to work on BSDs
Revision:
syslog-ng--mainline--2.0--patch-52
2005-08-08 Balazs Scheidler <[email protected]>
* tests/unit/test_msgparse.c (main): do not use "timezone" as a
global variable as it is a function on BSD derived platforms
modified files:
ChangeLog tests/unit/test_msgparse.c
2005-08-07 17:31:23 GMT Balazs Scheidler <[email protected]> patch-51
Summary:
fixed file uid/gid setting and some gcc4 problems
Revision:
syslog-ng--mainline--2.0--patch-51
2005-08-07 Balazs Scheidler <[email protected]>
* src/affile.c: fixed affile_dd_set_{file,dir}_{uid,gid}
* src/*.h: added complete prototypes for all functions
modified files:
ChangeLog src/affile.c src/affile.h src/afinter.h src/cfg.h
src/memtrace.h src/messages.h src/misc.c src/misc.h
2005-08-04 12:28:36 GMT Balazs Scheidler <[email protected]> patch-50
Summary:
fixed mark_freq problem
Revision:
syslog-ng--mainline--2.0--patch-50
2005-08-04 Balazs Scheidler <[email protected]>
* src/logreader.c (log_reader_fd_prepare): make sure make_target is
initialized before going to the poll loop first
modified files:
ChangeLog src/logreader.c
2005-08-04 11:11:39 GMT Balazs Scheidler <[email protected]> patch-49
Summary:
deprecated sync_freq, introduced flush_lines instead, fixed a faction of seconds formatting problem
Revision:
syslog-ng--mainline--2.0--patch-49
2005-08-04 Balazs Scheidler <[email protected]>
* doc/reference/syslog-ng.xml: added documentation on the new
flush_lines and flush_timeout options
* src/affile.c (affile_dd_set_sync_freq): removed sync_freq support,
did not work anyway, introduced flush_lines & flush_timeout instead
* src/afinet.c (afinet_dd_set_sync_freq): removed
* src/cfg-grammar.y: added flush options
* src/cfg.c: -"-
* src/logwriter.c: added flush_lines and flush_timeout support
* src/logmsg.c: fixed time fraction formatting
NEWS
*
NEWS.hu
*
modified files:
ChangeLog doc/reference/syslog-ng.xml src/affile.c
src/affile.h src/afinet.c src/cfg-grammar.y src/cfg-lex.l
src/cfg.c src/cfg.h src/logmsg.c src/logwriter.c
src/logwriter.h
2005-07-30 20:48:37 GMT Balazs Scheidler <[email protected]> patch-48
Summary:
further fixes to the previous patch to unify tcp/udp codepaths in afsocket, test program fixes
Revision:
syslog-ng--mainline--2.0--patch-48
2005-07-30 Balazs Scheidler <[email protected]>
* src/afinter.c (afinter_source_dispatch): do not dispatch message
if it is NULL (might happen if several internal sources are defined)
* src/afsocket.c (afsocket_sc_queue): removed bogus internal error message,
(afsocket_sd_init): added error handling around listen()
* tests/functional/func_test.py: added AF_INET testing (udp & tcp)
NEWS
*
NEWS.hu
*
modified files:
ChangeLog src/afinter.c src/afsocket.c
tests/functional/func_test.py
2005-07-30 20:20:50 GMT Balazs Scheidler <[email protected]> patch-47
Summary:
fixed stupid UDP initialization problem and updated a unit test program
Revision:
syslog-ng--mainline--2.0--patch-47
2005-07-30 Balazs Scheidler <[email protected]>
* src/afsocket.c (afsocket_sd_init): fixed stupid mistake in UDP
initialization code
* tests/unit/test_msgparse.c: adapted to the new timezone parsing
code (msg has the local timezone by default instead of -1)
NEWS
*
NEWS.hu
*
modified files:
ChangeLog src/afsocket.c tests/unit/test_msgparse.c
2005-07-28 13:39:43 GMT Balazs Scheidler <[email protected]> patch-46
Summary:
added cfg-lex.c and cfg-grammar.c to the distribution
Revision:
syslog-ng--mainline--2.0--patch-46
modified files:
ChangeLog src/Makefile.am
2005-07-28 13:37:23 GMT Balazs Scheidler <[email protected]> patch-45
Summary:
small Makefile fixes and a flex compatibility fix
Revision:
syslog-ng--mainline--2.0--patch-45
2005-07-28 Balazs Scheidler <[email protected]>
* src/Makefile.am: added cfg-lex.c and cfg-grammar.c to
MAINTAINER_CLEAN_FILES
* src/cfg-lex.l: removed YY_NO_UNPUT as it was not standard
(reported by Roberto Nibali)
modified files:
ChangeLog src/Makefile.am src/cfg-lex.l
2005-07-26 09:23:24 GMT Balazs Scheidler <[email protected]> patch-44
Summary:
use the same code path for SOCK_STREAM and SOCK_DGRAM sockets
Revision:
syslog-ng--mainline--2.0--patch-44
2005-07-26 Balazs Scheidler <[email protected]>
* src/afsocket.c (afsocket_sd_init, afsocket_sd_deinit): unified
SOCK_STREAM and SOCK_DGRAM code-paths, do not use a separate reader
for SOCK_DGRAM, use AFSocketSourceConnection instead for both types,
(afsocket_sd_format_persist_name): new function, to format a
persistent config name, instead of doing it inline every time
modified files:
ChangeLog src/afsocket.c src/afsocket.h
2005-07-26 09:21:15 GMT Balazs Scheidler <[email protected]> patch-43
Summary:
timezone portability fixes for BSDs
Revision:
syslog-ng--mainline--2.0--patch-43
2005-07-26 Balazs Scheidler <[email protected]>
* src/misc.c (get_local_timezone_ofs): added a time_t when argument,
the timezone will be returned for that given time in UTC, the
algorithm to return a timezone does not rely on the timezone and
daytime global variables as those are Linux specific
* src/macros.c (log_macro_expand): pass the appropriate time for get_local_timezone_ofs()
* src/logmsg.c (log_msg_parse, log_msg_init): -"-
* src/affile.c (affile_dd_queue): -"-
NEWS
*