-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
5459 lines (3768 loc) · 172 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
2015-04-08 10:07:42 dm8tbr
* apply fix for documentation (needed by distro packaging)
2015-04-08 09:09:26 ph3-der-loewe
* Fix: Do not crash URL Auth is used with stream_auth
and no credentials are given.
This fixes a crash (NULL reference) in case URL Auth is used
and stream_auth is trigged with no credentials passed by the client.
Username and password is now set to empty strings and transmited to
the backend server this way.
See #2191 for more details and to keep track of the problem.
Closes: #2191, DEB#782120
2015-04-08 09:02:20 ph3-der-loewe
* Fix: Let util_url_escape() handle NULL parameter.
This lets util_url_escape() handle NULL passed as parameter.
In case the parameter is NULL it will also return NULL.
This patch also does some cleanup of the code such as migration
away from int and thus avoiding future failures.
2015-04-08 08:32:23 dm8tbr
* update version number to 2.4.2 in preparation for release
this will be a strict security release
2015-04-08 08:18:40 dm8tbr
* applying curl fix for win32 from master
2014-11-19 13:42:23 dm8tbr
* This is Spaaarrr^w Icecast 2.4.1!
2014-11-19 13:41:09 dm8tbr
* Makefile.am and configure.in for new docs
2014-11-19 12:18:49 dm8tbr
* Removing unmaintained RPM spec file
2014-11-19 11:30:58 ePirat
* Set PATH_MAX to 4096 if not defined (patch by Svante Signell
See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=767542
2014-11-18 19:57:21 ePirat
* Docs: 2.4.1 docs added
2014-11-18 10:17:16 ePirat
* fix for memory errors when using a lot of headers
2014-11-18 08:51:03 dm8tbr
* Comments in <http-headers> break things ATM.
Moved the comment out to avoid this bug.
Needs to be checked.
2014-11-17 19:20:57 ph3-der-loewe
* subset of earlier patch so it can go into 2.4.1: disconnects
stdio of <on-[dis]connect> scripts from server owned filehandles.
* This is considered a security fix: if on-connect/on-disconnect
scripts are used, file descriptors of the server process remain open
and could be written to or read from. Most pressing STDIN, STDOUT,
STDERR are handled. Further all file descriptors up to 1024 are closed.
There is a remaining (much lower) risk in combination of either a
malicious or susceptible script and FDs above 1024.
2014-11-10 10:46:55 ph3-der-loewe
* patch to fix regression on header size with large headers introduced
by support of <server-id> and <http-headers>. This should ensure we
have at least space for 2kB of extra headers. Depending on function
and call we may have much more space.
2014-11-10 08:23:34 dm8tbr
* Update minimal config to also contain ACAO * header
2014-11-10 06:25:15 dm8tbr
* Update default config: SSL, headers, default-mount
2014-11-09 10:55:29 dm8tbr
* Updated default openSSL cipher string
* https://wiki.mozilla.org/Security/Server_Side_TLS#Intermediate_compatibility_.28default.29
* same Qualys result
2014-11-09 09:13:59 dm8tbr
* Clean up default config
2014-11-08 16:23:26 dm8tbr
* Applying patch by ph3-der-loewe, HTTP PUT requires content-type
* In case of SOURCE we are lenient and thus quite some source clients
don't send a proper content-type, especially if they only support mp3.
* This was meant to be introduced in 2.4.0 already, sadly we missed it.
* All source clients MUST send proper content-type after migrating to
Icecast HTTP PUT protocol.
2014-11-08 13:34:45 ph3-der-loewe
* Fixed regression introduced in r18356 (CVE-2011-4612): client
duration time is now correctly logged. PRIu64 MUST NOT be used with
log_write_direct() as depending on platform PRIu64 may be using
something not supported by __vsnprintf() of log/log.c.
2014-11-08 12:28:17 ph3-der-loewe
* make use of sizeof() not explicit magic numbers
2014-11-07 23:10:43 ph3-der-loewe
* fixing some compiler warnings
2014-11-07 22:06:06 ph3-der-loewe
* updated some copyright headers
2014-11-07 20:56:04 ph3-der-loewe
* fix for %z on win*. hope it doesn't breaky anything else.
2014-11-07 19:14:28 ph3-der-loewe
* added warnings on empty and default values of <fileserve>,
<hostname>, <location>, <admin> and <server-id>
2014-11-07 11:18:54 ph3-der-loewe
* send errorlog (loglevel WARN) to stderr prior to opening the real
logfiles.
2014-11-07 10:12:24 ph3-der-loewe
* added support for type="" and status="" in <header>
(subelement of <http-headers>).
2014-11-07 02:55:57 ph3-der-loewe
* Added support for <http-headers> within <mount>.
Also support merging of headers (normal mount + default mount).
2014-11-07 01:40:28 ph3-der-loewe
* handle empty strings in config file better. Now empty strings are
handled in: accesslog, errorlog, logdir, webroot, adminroot and
hopefully all kinds of port.
2014-11-07 00:56:02 ph3-der-loewe
* initial patch to allow adding user defined headers
2014-11-06 23:55:58 ph3-der-loewe
* coding style and typo correcion
2014-11-06 12:02:00 dm8tbr
* Be more verbose in case of fileserve off
2014-11-05 10:09:07 dm8tbr
* applied patch to update the default ciphers to be more secure
* tested this successfully against https://www.ssllabs.com/ssltest/
2014-11-03 19:34:10 ph3-der-loewe
* applied patch to disable SSLv3 and SSL compression explicitly
2014-11-02 20:19:29 dm8tbr
* fix JSON status API problems
* Put the last item check into every filtered tag.
* This way we shouldn't run into problems of this type anymore.
* Also it should be easier to customize this way,
if someone wants to filter differently.
2014-10-31 09:00:45 ph3-der-loewe
* rename ICE_LISTEN_QUEUE, ICE_RUNNING and ICE_HALTING
so they have a prefix of ICECAST_
2014-10-31 08:46:58 ph3-der-loewe
* LOG_{ERROR|WARN|INFO|DEBUG}()
-> ICECAST_LOG_{ERROR|WARN|INFO|DEBUG}()
* avoid collision with LOG_INFO that is defined as part of syslog.
2014-10-26 14:03:57 ph3-der-loewe
* make <auth> in <mount type="default"> work if no <mount-name> is
given.
2014-10-23 20:41:38 epirat
* More detailed logging
* Add source IP adress to startup and source exit logging
* Add mountpoint to some log lines
2014-10-18 16:25:29 ph3-der-loewe
* fix warnings, mostly related to win*-builds
2014-10-09 10:39:13 ph3-der-loewe
* Replace the old logging macros with variadic argument macros.
(patch by ePirat)
2014-07-23 16:55:57 dm8tbr
* removed threadpool from example config
it is long gone and unused
2014-07-23 10:20:47 dm8tbr
* Fix autogen.sh to work properly on Mac OS
* Applying patch by ePirat
2014-05-06 05:23:42 dm8tbr
* This is Icecast 2.4.0!
2014-05-06 04:53:24 dm8tbr
* SECURITY FIX - Override supplementary groups if <changeowner>
2014-05-05 05:16:44 dm8tbr
* Added <audio> for supported streams. TNX ePirat
2014-05-04 17:36:25 dm8tbr
* status2.xsl, broken for a decade, now it's gone!
2014-05-04 17:09:59 dm8tbr
* Updated docs:
* logging to STDERR; known issues
* Refactored docs about client authentication
* Vastly improved page about Icecast statistics
* Clean up supported windows versions
* Quick fixup of the basic setup page
* Minor fixes to the config file documentation
* Updated YP documentation
* Reduced win32 documentation to essentials
2014-05-04 07:14:54 dm8tbr
* Adding stream_start_iso8601, server_start_iso8601
ISO8601 compliante timestamps for statistics. Should make usage in
e.g. JSON much easier.
Added as new variables to avoid breaking backwards compatibility.
2014-05-04 05:16:00 dm8tbr
* Nicer looking tables for the admin interface.
ePirat sent updated tables code that should look much nicer.
This is admin interface only (and a global css change).
2014-03-09 13:02:35 dm8tbr
* Set content-type to official "application/json"
2014-03-09 12:27:58 dm8tbr
* Initial JSON status transform.
Output roughly limited to data also visible through status.xsl.
2014-03-09 12:26:15 dm8tbr
* Silence direct calls, add partial array support.
* The XSLT will now return empty if called directly.
This is a security measure to prevent unintended data leakage.
* Adding partial array support to print sources in an array.
Code lifted from:
https://code.google.com/p/xml2json-xslt/issues/detail?id=3
2014-03-09 12:19:35 dm8tbr
* Adding xml2json XSLT, svn r31 upstream trunk.
https://code.google.com/p/xml2json-xslt/
2014-03-01 17:53:00 dm8tbr
* Icecast 2.4 beta5 aka 2.3.99.5
2014-03-01 17:37:38 dm8tbr
* Reverting r18945 for now as using -b breaks things.
Reopening #1886, patch needs rework.
2014-03-01 16:38:15 dm8tbr
* Web output properly redone, credit to ePirat.
Now validates completely as XHTML1.0 strict.
Also improves rendering on mobile devices.
2014-02-23 21:29:35 dm8tbr
* Send charset in headers for everything, excluding file-serv and streams.
2014-02-16 10:14:28 dm8tbr
* Added warning to documentation
ensure queue-size >> burst-size.
2014-01-23 13:55:23 dm8tbr
* Icecast 2.4 beta4 aka 2.3.99.4
2014-01-23 06:23:42 dm8tbr
* Updated web interface to be more XHTML compliant.
* Added warning about HTML scraping to main page.
2014-01-12 21:09:04 ph3-der-loewe
* Fixed a memory leak. Lost headers of stream because of wrong ref
counter in associated refbuf objects.
2014-01-12 12:29:27 ph3-der-loewe
* Completed HTTP PUT support, send 100-continue-header,
if client requests it. We need to adhere to HTTP1.1 here.
2014-01-12 12:09:59 ph3-der-loewe
* avoid memory leak in _parse_mount() when "type"-attribuet is set
2013-11-06 01:01:31 ph3-der-loewe
* corrected Date-header format to conform the standard (see RFC1123).
Thanks to cato for reporting.
2013-05-29 08:22:06 dm8tbr
* Added a favicon to the web-root content
2013-05-15 16:45:55 dm8tbr
* We now split handling of command line arguments into two parts.
Only the critical part of getting the config file is done first (and
-v as it prevents startup). The rest (currently only -b) is deferred.
It allows us to log error messages to stderr even if the -b argument
is passed. This is mainly for the case where the logfile or TCP port
can't be opened.
2013-04-06 05:00:00 dm8tbr
* Icecast 2.4 beta3 aka 2.3.99.3
2013-04-05 20:13:18 dm8tbr
* Edited warning for clarity.
2013-04-05 19:49:13 ph3-der-loewe
* added a warning in case mount of type default is defined but a
mountname is set
2013-04-05 16:44:51 dm8tbr
* Setting Icecast version to 2.3.99.3 in preparation for 2.4 beta3.
2013-04-05 16:43:16 dm8tbr
* Add warning when using generic handler for stream sent to Icecast.
All bets are off, we're trying our best using legacy handling code.
2013-04-03 02:04:38
* avoid fnmatch() on _WIN32 and fall back to strcmp(). Seems that
MinGW does half-implement fnmatch()...
2013-04-03 00:46:55 ph3-der-loewe
* do fuzzy(fnmatch) matching for mountpoint names of non-normal
mounts, see #1914
2013-04-03 00:33:10 ph3-der-loewe
* mount points defined in config should use data from default mounts
as well, see #1914
2013-04-02 18:46:44 ph3-der-loewe
* Added support for a default mount. See #1914.
The default mount is a block in the config file that contains settings
for all mount points that do not have a block in configfile themself.
This is implemented by a <mount type="default">-block.
In this case the <mount>-block MUST NOT contain
a <mount-name>-subblock.
2013-04-02 12:19:33
* Throw away the reqbuf stuff as it was not well designed. Removing it
and restoring usage of %H to properly address #1916
2013-04-02 11:51:47 ph3-der-loewe
* make use of const keyword in _fatal_error()
2013-04-02 11:48:40 ph3-der-loewe
* allow --version as alias to -v (printing version number)
2013-03-30 10:52 dm8tbr
* trunk/icecast/ChangeLog:
* trunk/icecast/configure.i:
This is Icecast 2.4 beta2 (aka 2.3.99.2)
2013-03-30 10:26:44 dm8tbr
* trunk/icecast/ChangeLog:
Updated Icecast ChangeLog
2013-03-30 07:09:14 dm8tbr
* trunk/icecast/doc/icecast2_config_file.html:
Adding "A word of warning" to Icecast config file documentation.
2013-03-29 15:07:33 dm8tbr
* trunk/icecast/src/connection.c:
Highly experimental HTTP PUT support. ref #1812
We are handling it the same as we would handle a SOURCE request.
Due to legacy code, sender MUST send proper content-type header,
if content type is not audio/mpeg!
Can be tested using real-time encoded output and piping it into
| curl -u username:password -H "Content-type: application/ogg" -T - \
http://localhost:8000/mountname.ogg
Note that this example has ZERO timing, so a simple 'cat *.ogg' will
fail.
Whatever feeds the pipe must do it at proper timing for real-time
playback!
2013-03-29 14:41:24 dm8tbr
* trunk/icecast/src/logging.c:
Backing out part of r18755 touching this file.
fixes #1942
2013-03-09 15:23:48 dm8tbr
* trunk/icecast/doc/icecast2_basicsetup.html:
Added note about distribution packaging of Icecast, fixing #1249.
2013-02-24 20:12:42 dm8tbr
* trunk/icecast/doc/icecast2_listenerauth.html:
Fixing a small bit in the example that got copied.
2013-02-24 16:19:53 dm8tbr
* trunk/icecast/doc/icecast2_config_file.html:
* trunk/icecast/doc/icecast2_listenerauth.html:
Icecast documentation update for stream_auth.
2013-02-24 14:25:37 ph3-der-loewe
* trunk/icecast/src/admin.c:
corrected mime type of plain text mount point list,
thanks to cato
2013-02-24 02:04:43 ph3-der-loewe
* trunk/icecast/src/format_mp3.c:
* trunk/icecast/src/util.c:
send Expires:-headers on all cache=0 requests, close #1870
2013-02-24 00:53:09 ph3-der-loewe
* trunk/icecast/src/yp.c:
handle yp headers case insensetive, close #1873
2013-02-24 00:41:15 ph3-der-loewe
* trunk/icecast/doc/icecast2_config_file.html:
add info abot usage of strftime(3), see #1823
2013-02-24 00:17:45 ph3-der-loewe
* trunk/icecast/doc/icecast2_listenerauth.html:
updated docs, added additional POST data, see #1422
2013-02-23 20:55:58 ph3-der-loewe
* trunk/icecast/src/slave.c:
Allow full URLs to be returned by the master server. close #1878
2013-02-23 17:51:16 ph3-der-loewe
* trunk/icecast/src/auth_url.c:
Updated listener_remove handler:
- added ip= and agent=,
- Some cleanup && made code more uniform,
- avoid int for size_t vars.
actions: close #1422
2013-02-23 17:05:54 ph3-der-loewe
* trunk/icecast/src/cfgfile.c:
format fix
2013-02-23 16:38:23 ph3-der-loewe
* trunk/icecast/src/cfgfile.c:
do not call xmlCleanupParser() too often, close #1931
2013-01-16 12:03:03 ph3-der-loewe
* trunk/icecast/src/shout.c:
* trunk/icecast/src/util.c:
Replaced usage of sprintf() with snprintf().
2013-01-16 12:02:14 ph3-der-loewe
* trunk/icecast/src/avl/avl.c:
* trunk/icecast/src/avl/avl.h:
Replaced usage of sprintf() with snprintf(). Also exported size of key
printer's buffer in avl/.
2013-01-02 14:44:43 ph3-der-loewe
* trunk/icecast/src/log/log.c:
* trunk/icecast/src/log/log.h:
Escape log entries in access log (close: #1916)
2013-01-02 14:44:08 ph3-der-loewe
* trunk/icecast/src/cfgfile.c:
* trunk/icecast/src/logging.c:
Escape log entries in access log (close: #1916)
2012-11-13 14:40:48 ph3-der-loewe
* trunk/icecast/src/admin.c:
corrected Content-Length: header in admin (raw) requests. Thanks to
paluh for reporting.
2012-11-13 11:25:46 ph3-der-loewe
* trunk/icecast/src/sighandler.h:
cleanup unused var schedule_config_reread.
2012-11-12 21:01:57 ph3-der-loewe
* trunk/icecast/src/main.c:
correction for win32 build to avoid segfault if build with mingw.
2012-10-14 23:50:15 ph3-der-loewe
* trunk/icecast/src/source.c:
corrected coding style
2012-10-14 21:36:10 ph3-der-loewe
* trunk/icecast/src/cfgfile.c:
removed useless blank line
2012-10-12 14:41:12 ph3-der-loewe
* trunk/icecast/:
removed \r at end of lines
2012-10-11 22:54:53 ph3-der-loewe
* trunk/icecast/src/auth_url.c:
* trunk/icecast/src/cfgfile.c:
* trunk/icecast/src/client.c:
* trunk/icecast/src/client.h:
* trunk/icecast/src/format_mp3.c:
* trunk/icecast/src/logging.c:
* trunk/icecast/src/main.c:
* trunk/icecast/src/sighandler.c:
* trunk/icecast/src/util.c:
updated copyright notices.
2012-10-11 22:49:57 ph3-der-loewe
* trunk/icecast/src/client.c:
* trunk/icecast/src/client.h:
* trunk/icecast/src/format_mp3.c:
* trunk/icecast/src/main.c:
* trunk/icecast/src/sighandler.c:
avoid compiler warnings;
send /message/ in case of 403.
2012-10-11 22:28:40 ph3-der-loewe
* trunk/icecast/src/cfgfile.c:
cleanup of <source-password> parser code
2012-10-11 18:06:30 ph3-der-loewe
* trunk/icecast/conf/icecast.xml.in
* trunk/icecast/doc/icecast2_listenerauth.html
* trunk/icecast/src/auth_url.c:
Added options "headers" and "header_prefix" to URL based listener
auth.
Someone should update the docs/ text to good english.
2012-10-11 00:26:38 ph3-der-loewe
* trunk/icecast/configure.in:
* trunk/icecast/src/main.c:
Fix win32 patches (r18642) so it builds corectly on non-win32 again.
2012-10-10 23:34:54 ph3-der-loewe
* trunk/icecast/src/xslt.c:
use correct prototype.
2012-10-10 23:15:05 ph3-der-loewe
* trunk/icecast/src/client.c:
Improved handling of HTTP client errors:
- Make the internal API more uniform,
- Improved error pages slightly (See: #1889).
2012-10-10 22:48:15 ph3-der-loewe
* trunk/icecast/src/connection.c:
* trunk/icecast/src/fserve.c:
Make some more vars local (static).
2012-10-10 22:41:30 ph3-der-loewe
* trunk/icecast/configure.in:
* trunk/icecast/src/logging.c:
* trunk/icecast/src/main.c:
* trunk/icecast/src/util.c:
fixes for win32 (ported 2.3.99.0 patches).
Thanks to LRN (from mailing list).
2012-07-31 23:09:42 ph3-der-loewe
* trunk/icecast/src/log/log.c:
Corrected check for the value of priority to be within
valid range.
2012-07-18 01:40:55 ph3-der-loewe
* trunk/icecast/src/format.c:
remove unused variable "ice_config_t *config" from
format_prepare_headers()
2012-07-17 23:55:09 ph3-der-loewe
* trunk/icecast/src/admin.c:
* trunk/icecast/src/client.c:
* trunk/icecast/src/format.c:
* trunk/icecast/src/fserve.c:
* trunk/icecast/src/util.c:
* trunk/icecast/src/util.h:
* trunk/icecast/src/xslt.c:
Send proper HTTP headers in responses to clients.
This is currently not implemented for SOURCE and STATS clients as
I suspect to break them. This needs some more research.
close #1639, see #1870 and #1885.
2012-07-17 21:35:31 dm8tbr
* tags/icecast/icecast-2.4-beta:
Release of Icecast 2.4 beta1 (2.3.99.0)
2012-07-17 21:24:45 dm8tbr
* trunk/icecast/src/source.c:
Adding limits.h to fix build problems on e.g. newer glibc.
2012-07-17 20:46:06 dm8tbr
* trunk/icecast/NEWS:
* trunk/icecast/configure.in:
Updated NEWS for Icecast 2.3.3 and 2.4-beta.
Changed version to report as 2.3.99.0 for 2.4-beta release
2012-07-17 14:42:16 ph3-der-loewe
* trunk/icecast/src/source.c:
Allow (standard strftime(3)) %x codes in mount's <dump-file> to embedd
timestamps in filenames. This currently only works on non windows.
closes #1823
2012-07-17 14:03:37 ph3-der-loewe
* trunk/icecast/src/connection.c:
* trunk/icecast/src/sighandler.c:
* trunk/icecast/src/slave.c:
* trunk/icecast/src/source.c:
* trunk/icecast/src/source.h:
* trunk/icecast/src/stats.c:
race condition patch as submitted by lds and remi, slightly modified
by me. closes #1810
2012-07-16 16:05:21 ph3-der-loewe
* trunk/icecast/httpp/httpp.c:
* trunk/icecast/httpp/httpp.h:
commited support for HTTP PUT, See #1812
2012-06-13 21:11:07 giles
* trunk/icecast/AUTHORS:
* trunk/icecast/NEWS:
* trunk/icecast/src/Makefile.am:
* trunk/icecast/src/format_ogg.c:
* trunk/icecast/src/format_opus.c:
* trunk/icecast/src/format_opus.h:
Add WebM support.
This is David Richard's webm support patch from the icecast-webm
branch.
Mention Opus and WebM support in NEWS.
2012-06-13 19:56:58 dm8tbr
* trunk/icecast/:
Removed outdated debian packaging, not used by downstream anyway.
2012-06-11 20:06:32 dm8tbr
* trunk/icecast/configure.in:
Reset version string to 'trunk'.
2012-06-11 16:43:54 dm8tbr
* tags/icecast_2_3_3:
Icecast release, version 2.3.3
2012-06-10 20:09:59 dm8tbr
* trunk/icecast/doc/icecast2_win32.html:
* trunk/icecast/doc/index_win32.html:
Added note about missing IPv6 support on Win32. cf. #1877
2012-06-10 13:06:03 dm8tbr
* trunk/icecast/configure.in:
set 2.3.3 version in preparation for release
2012-06-10 12:35:47 dm8tbr
* trunk/icecast/web/status.xsl:
Hide VCLT from status.xsl for now as agreed earlier.
VCLT support remains unchanged for users that want to use it.
Just use the URL: {@mount}.vclt
2012-06-07 18:27:58 ph3-der-loewe
* trunk/icecast/log/log.c:
support field width with (most common) %Ns and %NH syntax.
2012-06-07 18:13:28 ph3-der-loewe
* trunk/icecast/log/log.c:
honor field width in %s and %H
2012-06-07 18:09:48 ph3-der-loewe
* trunk/icecast/log/log.c:
consider backticks as well as backslashes invalid chars
2012-06-07 15:57 dm8tbr
* trunk/icecast/format_mp3.c:
* trunk/icecast/fserve.c:
* trunk/icecast/log/log.c:
Patchset to properly address CVE-2011-4612
2011-12-03 09:25 dm8tbr
* trunk/icecast/doc/icecast2_config_file.html:
Added 'admin' and 'location' to documentation
Added clarification to the 'username' attribute of a mount
Fixed typos
2011-11-26 11:11 ph3-der-loewe
* trunk/icecast/admin/Makefile.am: Added vclt.xsl to list
of files which are to be installed.
2011-11-26 02:36 ph3-der-loewe
* trunk/icecast/src/fserve.c, trunk/icecast/admin/vclt.xsl,
trunk/icecast/web/status.xsl: Added VCLT playlist support.
2011-11-25 22:37 dm8tbr
* trunk/icecast/conf/icecast.xml.in:
Added 'admin' and 'location' to default config, thus fixing
#1839.
2011-11-25 22:17 ph3-der-loewe
* trunk/icecast/src/cfgfile.c, trunk/icecast/conf/icecast.xml.in,
trunk/icecast/conf/icecast_urlauth.xml.in,
trunk/icecast/conf/icecast_minimal.xml.in: Updated <alias>
to use destination="" not dest="". The old dest="" attribute
is still supported.
2011-11-25 22:11 dm8tbr
* trunk/icecast/src/cfgfile.c trunk/icecast/src/cfgfile.h
trunk/icecast/src/connection.c:
Applied justdave's patches, fixing #1717 and #1718.
HTTPS now with better security and support for chained
certificates.
2011-11-25 21:20 ph3-der-loewe
* trunk/icecast/AUTHORS, trunk/icecast/src/cfgfile.c.
trunk/icecast/src/connection.c: Allow the source password
to be undefined. This is to avoid falling back to a default
password which would be a security problem. Fixing #1846
----------------------------------------------------------------------
Everything above is post 2.3.2. The stuff below is incomplete.
The time zone above is UTC, the time zone below is unknown.
ph3-der-loewe, Fri Nov 25 21:20:58 UTC 2011
----------------------------------------------------------------------
2005-11-29 03:06 karl
* trunk/icecast/src/auth_url.c: update for authentication header
via libcurl. allows for http://user:pass@host.. else the param
specified user/pass. In the case of listener_add/remove use the
client provided user/pass if no others are specified.
2005-11-20 13:53 karl
* trunk/icecast/src/source.c: allow for the intro file to change
over HUP
2005-11-17 00:54 karl
* trunk/icecast/src/auth.c, trunk/icecast/src/client.c,
trunk/icecast/src/client.h, trunk/icecast/src/connection.c:
change status code for server/stream full cases (#738), also
some others places where connections are terminated.
2005-11-15 00:36 karl
* trunk/icecast/src/stats.c: update queue handling for stats. This
was slow when many stats were being queued. These apply to both
web interface requests and stats clients.
2005-11-15 00:29 karl
* trunk/icecast/src/format_vorbis.c: fixup granulepos on EOS case
when rebuilding vorbis streams. This was causing a short audio
glitch on playback, but was not typically noticed.
2005-10-24 14:51 oddsock
* trunk/icecast/conf/icecast.xml.in,
trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/logging.c, trunk/icecast/src/main.c: 2 new
features to icecast logging: - logsize : specify in KB the max
size of any of icecast log files - logarchive : causes icecast
to rename logs with timestamps (for proper archiving)
2005-10-11 13:40 karl
* trunk/icecast/src/cfgfile.c: avoid adding a mount_t structure if
there is no mount name defined, segv occurs later on
2005-10-06 02:41 karl
* trunk/icecast/src/client.c: fix bug #717. a race on source exit
could cause memory corruption
2005-10-01 15:59 msmith
* trunk/icecast/admin/manageauth.xsl: Don't display passwords in
auth management interface; it's useless and shouldn't be
displayed anyway.
2005-10-01 14:08 karl
* trunk/icecast/src/connection.c: add hack for nsvcap, apparently
EOL is 3 chars
2005-09-30 16:30 pem
* trunk/icecast/admin/fr_FR/listclients.xsl: Copying the /admin
xslt files into /admin/fr_FR for translation.
2005-09-30 14:39 pem
* trunk/icecast/admin/fr_FR,
trunk/icecast/admin/fr_FR/Makefile.am,
trunk/icecast/admin/fr_FR/listmounts.xsl,
trunk/icecast/admin/fr_FR/manageauth.xsl,
trunk/icecast/admin/fr_FR/moveclients.xsl,
trunk/icecast/admin/fr_FR/response.xsl,
trunk/icecast/admin/fr_FR/stats.xsl,
trunk/icecast/admin/fr_FR/updatemetadata.xsl:
2005-09-29 15:07 msmith
* trunk/icecast/doc/icecast2_basicsetup.html: One sentence in
intro to explain mountpoints
2005-09-27 20:26 oddsock
* trunk/icecast/admin/listclients.xsl,
trunk/icecast/admin/listmounts.xsl,
trunk/icecast/admin/stats.xsl, trunk/icecast/web/status.xsl: a
little better visibility for some features..
2005-09-27 02:47 oddsock
* trunk/icecast/admin/listclients.xsl,
trunk/icecast/admin/listmounts.xsl: whoops..forgot these
2005-09-27 02:45 oddsock
* trunk/icecast/admin/stats.xsl, trunk/icecast/web/status.xsl: fix
auth.xsl link
2005-09-26 16:34 karl
* trunk/icecast/src/connection.c: Fix a bug where a shoutcast
source client (nsvtools) does not wait for the OK response.
Icecast was dropping the connection preventing the stream
2005-09-23 21:31 oddsock
* trunk/icecast/Makefile.am, trunk/icecast/configure.in,
trunk/icecast/examples/Makefile.am,
trunk/icecast/win32/icecast2.iss: include example application in
distribution
2005-09-23 21:13 oddsock
* trunk/icecast/Makefile.am: add examples to distribution
2005-09-23 21:11 oddsock
* trunk/icecast/examples,
trunk/icecast/examples/icecast_auth-1.0.tar.gz: forgot the
example listener auth application...
2005-09-23 14:39 oddsock
* trunk/icecast/ChangeLog: updated Changelog
2005-09-23 14:23 oddsock
* trunk/icecast/configure.in, trunk/icecast/icecast.spec,
trunk/icecast/win32/Makefile.am,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/icecast2_console.dsp: version bumps for 2.3
forgot a few win32 files in the automake Makefile...
2005-09-22 20:21 oddsock
* trunk/icecast/NEWS: small addition
2005-09-22 14:39 msmith
* trunk/icecast/NEWS: Couple more news items
2005-09-22 14:19 oddsock
* trunk/icecast/NEWS: new features for Icecast 2.3
2005-09-19 02:11 karl
* trunk/icecast/src/source.c: maintain the listener_peak stat
across relay restarts
2005-09-16 21:29 karl
* trunk/icecast/src/format_mp3.c: minor memory leak possible on
source shutdown
2005-09-16 18:29 oddsock
* trunk/icecast/src/main.c, trunk/icecast/win32/Icecast2win.dsw,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/icecastService.cpp,