-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4666 lines (3252 loc) · 151 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
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,
trunk/icecast/win32/icecastService.dsp: Now you can start
icecast as a windows service.
2005-09-16 16:53 karl
* trunk/icecast/src/auth.c: fix for race, client needs setup
before adding to pending tree
2005-09-15 19:31 msmith
* trunk/icecast/src/source.c: Fix deadlock when moving clients.
Thanks to oddsock for producing a testcase and backtrace, and
karl for fixing my brain
2005-09-12 23:06 oddsock
* trunk/icecast/win32/icecast2.iss: oops..missed one..
2005-09-12 22:53 oddsock
* trunk/icecast/configure.in, trunk/icecast/icecast.spec,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: version bumps
2005-09-12 16:47 karl
* trunk/icecast/src/logging.c: log username to access log (bug
#706) if available.
2005-09-12 16:00 karl
* trunk/icecast/src/admin.c: fix segv case on
listmounts/moveclients when a fallback to file stream is running
2005-09-10 16:56 msmith
* trunk/icecast/src/auth.c: Patch from [email protected]: don't
treat all clients as duplicates.
2005-09-08 14:03 oddsock
* trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: updates for rc2 build
2005-09-08 13:43 karl
* trunk/icecast/src/fserve.c: if the m3u link is placed in
winamp/fb2k, then the host header misses the port number, so
I'll add a check that ignores the host header if it's missing a
port and generates the m3u host:port from the xml.
2005-09-08 13:32 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/slave.c: do
proper cleanup on odd cases of source client startup, also take
mutex lock for client_create at relay startup to prevent race
2005-09-01 16:11 karl
* trunk/icecast/src/auth.c, trunk/icecast/src/auth.h: immediately
release auth_t if authentication fails, that way we don't
trigger release_client like listener_remove event in the url
auth. Add lock in auth_t so that refcount changes are not a race
possibility.
2005-08-31 01:28 karl
* trunk/icecast/src/format_mp3.c: 2 updates to mp3 metadata
handling. allow a 0 metadata interval to disable metadata being
sent to new listeners (negative for whatever the source sends),
existing listeners retain their original interval setting. We
now limit how much mp3 is written after the metadata block in a
single format send call, this was only showing up on small
interval values.
2005-08-31 01:13 karl
* trunk/icecast/src/admin.c: content was wrong due to limiter
being 0
2005-08-30 20:29 msmith
* trunk/icecast/src/auth_htpasswd.c: Fix bug reported by
[email protected] - don't crash in htpasswd auth if the
auth file doesn't exist.
2005-08-30 00:30 karl
* trunk/icecast/src/yp.c: extra checks on YP updating, typically
on changes over HUP
2005-08-29 01:16 karl
* trunk/icecast/src/refbuf.c, trunk/icecast/src/slave.c: fix
double free bug with failed to start relays and add a guard on
refbuf release
2005-08-27 01:01 karl
* trunk/icecast/src/slave.c, trunk/icecast/src/source.c: minor
memory leak, and compiler warning cleanup
2005-08-25 01:03 karl
* trunk/icecast/src/source.c: hide fallback file from webroot
stats, still accessible from admin. Missed log debug line from
apply function
2005-08-25 00:07 karl
* trunk/icecast/src/auth.c, trunk/icecast/src/client.c,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/format.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c: fixes for client handling, these are
all related to the handling of max clients. I've taken out the
client_create out of the connection_complete_source and put it
in slave, that way we can control the cleanup of the
memory/socket better, the change also meant fallback to file
tests were slghtly different.
2005-08-23 19:00 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/auth.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/cfgfile.h: add per-mount listener time limit
setting
2005-08-23 18:40 karl
* trunk/icecast/conf/icecast.xml.in,
trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/auth.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/cfgfile.h, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: Allow for new listeners to fallback
if there are max listeners on the current mountpoint
2005-08-23 10:48 msmith
* trunk/icecast/src/source.c: Some versions of gcc complain about
the missing cast here; it's apparently needed because some
systems don't define NULL as a pointer (weird). Patch from
Moritz Grimm.
2005-08-22 23:38 oddsock
* trunk/icecast/doc/icecast2_admin.html: doc bug
2005-08-20 20:01 oddsock
* trunk/icecast/configure.in, trunk/icecast/icecast.spec: version
bump to RC1
* trunk/icecast/win32/icecast2.iss: installer update
2005-08-20 19:36 oddsock
* trunk/icecast/doc/Makefile.am: add jpgs to dist
2005-08-20 19:31 oddsock
* trunk/icecast/doc/Makefile.am, trunk/icecast/doc/icecast2.hhc:
doc updates
2005-08-20 18:46 oddsock
* trunk/icecast/win32/Makefile.am: add some bitmaps to the dist
2005-08-20 18:45 oddsock
* trunk/icecast/conf/Makefile.am,
trunk/icecast/conf/icecast_urlauth.xml.in: new example config
for URL auth
2005-08-20 00:03 oddsock
* trunk/icecast/src/client.c, trunk/icecast/src/logging.c,
trunk/icecast/win32/Icecast2win.clw: some windows build issues..
2005-08-18 20:37 karl
* trunk/icecast/src/client.c, trunk/icecast/src/connection.c,
trunk/icecast/src/source.c: merge fix, oddcast (maybe other
shoutcast source clients) don't wait for OK response, so we may
have surplus data already read, so keep it.
2005-08-18 20:26 karl
* trunk/icecast/src/auth_url.c: missed a diff from previous
commit, consistent naming style
2005-08-17 16:38 karl
* trunk/icecast/conf/icecast.xml.in, trunk/icecast/configure.in,
trunk/icecast/doc/icecast2_listenerauth.html,
trunk/icecast/src/auth_url.c: changes applied from feedback.
make option names and action settings more consistent. Add
changes to docs for listener auth via url
2005-08-17 02:40 oddsock
* trunk/icecast/doc/icecast2_admin.html,
trunk/icecast/doc/icecast2_basicsetup.html,
trunk/icecast/doc/icecast2_changes.html,
trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/doc/icecast2_faq.html,
trunk/icecast/doc/icecast2_glossary.html,
trunk/icecast/doc/icecast2_introduction.html,
trunk/icecast/doc/icecast2_listenerauth.html,
trunk/icecast/doc/icecast2_relay.html,
trunk/icecast/doc/icecast2_stats.html,
trunk/icecast/doc/icecast2_win32.html,
trunk/icecast/doc/icecast2_yp.html,
trunk/icecast/doc/index.html,
trunk/icecast/doc/index_win32.html,
trunk/icecast/doc/win32_section1.html,
trunk/icecast/doc/win32_section2.html,
trunk/icecast/doc/win32_section3.html: Make HTML title
non-version specific.. Add a new "changes" page which enumerates
major feature/fixes for each version.. We are starting with 2.3.
2005-08-17 02:24 oddsock
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2win.rc,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/Icecast2winDlg.h,
trunk/icecast/win32/credits.bmp,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/icecast2title.bmp,
trunk/icecast/win32/resource.h: #590 Credits now for Icecast2
Win32... whoop-de-doo...
2005-08-16 21:58 karl
* trunk/icecast/doc/icecast2_basicsetup.html: minor doc fixup for
bug #677
2005-08-16 21:14 karl
* trunk/icecast/src/main.c: updates for #599 (dropping of
stdin,out,err when using -b) and #630 (pidfile created before
changeowner/chroot)
2005-08-16 16:56 karl
* trunk/icecast/src/event.c, trunk/icecast/src/logging.c,
trunk/icecast/src/logging.h, trunk/icecast/src/xslt.c: log
xml/xslt parsing failure messages via error log. This applies to
both the xsl files and the icecast xml file when re-read. At
icecast startup, the logs are not open so these parsing messages
still go to stderr.
2005-08-16 14:58 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/global.h: increase the number of listening
sockets allowed. A more flexible scheme can be done later if
required
2005-08-12 20:44 oddsock
* trunk/icecast/admin/listclients.xsl,
trunk/icecast/admin/listmounts.xsl,
trunk/icecast/admin/manageauth.xsl,
trunk/icecast/admin/moveclients.xsl,
trunk/icecast/admin/response.xsl, trunk/icecast/admin/stats.xsl,
trunk/icecast/admin/updatemetadata.xsl,
trunk/icecast/web/Makefile.am, trunk/icecast/web/auth.xsl,
trunk/icecast/web/key.png, trunk/icecast/web/server_version.xsl,
trunk/icecast/web/status.xsl, trunk/icecast/web/status2.xsl,
trunk/icecast/web/style.css, trunk/icecast/web/tunein.png:
encorporated xslt changes from dave st. john....
2005-08-12 20:02 karl
* trunk/icecast/src/admin.c: make admin replies go via fserve
2005-08-12 15:27 karl
* trunk/icecast/src/client.c, trunk/icecast/src/connection.c,
trunk/icecast/src/fserve.c, trunk/icecast/src/fserve.h,
trunk/icecast/src/source.c, trunk/icecast/src/source.h,
trunk/icecast/src/stats.c, trunk/icecast/src/stats.h: make
various responses going back to the client be done via the file
serving thread
2005-08-12 03:27 karl
* trunk/icecast/src/xslt.c: make sure that older xslt libs on
non-win32 can be used as well
2005-08-12 02:40 karl
* trunk/icecast/src/auth.h, trunk/icecast/src/auth_url.c,
trunk/icecast/src/connection.h, trunk/icecast/src/main.c,
trunk/icecast/src/source.c: merge in client timelimit, only
auth_url sets this currently. Add missing prototypes for compile
warning
2005-08-11 23:49 oddsock
* trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2_console.dsp: misc build updates for
trunk
2005-08-11 23:48 oddsock
* trunk/icecast/src/auth_url.c: compiler error on win32
2005-08-11 23:29 karl
* trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/fserve.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c: drop the thread pool of connection
threads, they were using a blocking socket on incoming
connections. Now we get the accept thread to create a client_t
and mark it as a shoutcast client if need be. Then use a single
connection thread to poll the non-blocking sockets for the
headers. When complete they get handled as usual.
2005-08-11 23:17 oddsock
* trunk/icecast/src/logging.c: memory leak fix..
2005-08-11 23:11 karl
* trunk/icecast/src/auth_url.c: change the option names to be more
reasonable
2005-08-11 22:56 karl
* trunk/icecast/src/auth.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/main.c: a few fixes needed after some testing
on win32
2005-08-11 20:31 oddsock
* trunk/icecast/src/xslt.c: xlst function so that win32 can use an
older version of libxslt...
2005-08-09 02:55 karl
* trunk/icecast/src/source.c: make sure we have the initial
listeners stat
2005-08-09 02:14 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/client.c,
trunk/icecast/src/yp.c: merge fixes. NULL checks
2005-08-08 19:21 karl
* trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_mp3.h,
trunk/icecast/src/format_vorbis.c: Merge mp3 packing. mp3 (and
other pass-through streams) can bre received in very small
blocks and go out in those same small blocks increasing the
protocol overhead used by the provided. Generally occurs when
using a low bitrate stream and many listeners. With this patch
we pack out a refbuf before queuing. Add missing include for
vorbis build that shows on some platforms
2005-08-08 18:39 karl
* trunk/icecast/src/auth.c, trunk/icecast/src/connection.c,
trunk/icecast/src/fserve.c: allow for webroot requests to be
sent via an authenticator
2005-08-07 23:29 karl
* trunk/icecast/configure.in, trunk/icecast/src/Makefile.am,
trunk/icecast/src/auth.c, trunk/icecast/src/auth_url.c,
trunk/icecast/src/auth_url.h: merge URL listener auth
2005-08-07 23:01 karl
* trunk/icecast/src/Makefile.am, trunk/icecast/src/admin.c,
trunk/icecast/src/auth.c, trunk/icecast/src/auth.h,
trunk/icecast/src/auth_htpasswd.c,
trunk/icecast/src/auth_htpasswd.h, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/cfgfile.h, trunk/icecast/src/client.c,
trunk/icecast/src/client.h, trunk/icecast/src/connection.c,
trunk/icecast/src/main.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: Initial auth merge. Add an auth
thread (multiple threads can be done later) which can be used to
handle authentication mechanisms without taking locks for long
periods. Non-authenticated mountpoints bypass the auth thread.
The lookup/checking of the source_t is done after the
authentication succeeds so the fallback mechanism does not
affect which authenticator is used. This can be extended to
allow us to authenticate in webroot as well. XML re-read changes
will take effect immediately for new listeners but existing
listeners will use the original auth_t (refcounted) when they
exit. htpasswd access has been seperated out from auth.c, and
implements an AVL tree for a faster username lookup. The
htpasswd file timestamp is checked just in case there are
changes made externally
2005-08-07 14:50 karl
* trunk/icecast/src/auth.h, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/client.h, trunk/icecast/src/connection.c,
trunk/icecast/src/format.c, trunk/icecast/src/format_ogg.c,
trunk/icecast/src/format_ogg.h, trunk/icecast/src/refbuf.h,
trunk/icecast/src/source.c: merge extra checks. minor cleanup
work
2005-07-26 13:15 msmith
* trunk/icecast/src/logging.h: Fix for bug #688 as supplied by
[email protected]; make icecast compilable with Sun's
compiler
2005-07-04 20:11 karl
* trunk/icecast/src/stats.c, trunk/icecast/src/xslt.c: some xslt
related fixes. A small memory leak, a socket not closing on odd
case, and truncate the buffer length so that junk chars are not
sent back.
2005-06-27 02:10 karl
* trunk/icecast/src/format.c: merge fix, the per client intro
offset can be > 0, so we need to skip over some of the burst data
2005-06-25 12:27 karl
* trunk/icecast/src/admin.c: missed from previous merge, some
random chars at end of xml output
2005-06-19 13:50 karl
* trunk/icecast/src/yp.c: allow touch frequency setting to be
changed on any YP response. Also pass user agent to YP server
2005-06-18 10:54 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/connection.c,
trunk/icecast/src/stats.c, trunk/icecast/src/stats.h,
trunk/icecast/src/xslt.c: make admin and web root pages use file
serving thread to send back responses
2005-06-17 22:55 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/fserve.h: push HTTP header writing for file
download into file serving thread to prevent stalls in
connection thread. perform most file checking in fserve but
allow for m3u file override and using the Host header if
available.
2005-06-12 18:43 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/cfgfile.h, trunk/icecast/src/slave.c: small
cleanups. redundant mutex removed, updates to log messages
2005-06-11 17:21 karl
* trunk/icecast/src/fserve.c, trunk/icecast/src/fserve.h: update
file serving setup and processing. Do http header writing in
fserve thread by using generic write routine. small leak plugged
on failure case. extend mime type handling slightly for rare case
2005-06-11 01:24 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h, trunk/icecast/src/stats.c,
trunk/icecast/src/stats.h: update a few stats
2005-06-10 18:01 karl
* trunk/icecast/src/sighandler.c: this is needed for linuxthreads,
without it, zombie processes are left when on-[dis]connect is
used
2005-06-10 15:42 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/client.c, trunk/icecast/src/format.c,
trunk/icecast/src/fserve.c, trunk/icecast/src/fserve.h,
trunk/icecast/src/source.c: merge in fallback to file, override
also works
2005-06-10 00:37 karl
* 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/sighandler.c, trunk/icecast/src/source.c:
merge per-mount on-[dis]connect script handling
2005-06-09 20:54 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/stats.c: add a few
more informational stats
2005-06-09 15:44 karl
* trunk/icecast/conf/icecast.xml.in: might as well add these to
the samples configs
2005-06-09 15:32 karl
* trunk/icecast/conf/icecast.xml.in, trunk/icecast/src/cfgfile.c:
increase default max queue size, 100k isn't much and we do
reduce it when there are no lagging clients
2005-06-09 13:29 karl
* trunk/icecast/src/source.c: don't be too quick when dealing with
files. allow the limited per-client loop but don't trigger a
small poll timeout
2005-06-09 13:05 karl
* trunk/icecast/src/format_mp3.c: send StreamTitle in metadata
when reading from intro file
2005-06-09 04:05 oddsock
* trunk/icecast/src/auth.c, trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2_console.dsp: gotta love windows..
_snprintf is *much* more readable than snprintf (not)... also,
some updates to the VC project files
2005-06-09 02:21 karl
* trunk/icecast/src/auth.c: using .filename causes problems with
absolute paths for the temp file, also test to see if file
exists already
2005-06-09 01:51 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/admin.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/cfgfile.h, trunk/icecast/src/connection.c,
trunk/icecast/src/format.c, trunk/icecast/src/slave.c,
trunk/icecast/src/slave.h, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: merge in the on-demand relay
implementation.
2005-06-08 04:18 oddsock
* trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/icecast.dsp: updates for latest trunk
2005-06-08 01:36 karl
* trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/format.h, trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_ogg.c, trunk/icecast/src/source.c: Do
normal http header writing in source thread instead of the
connection thread, this will allow on-demand relays to fail and
still handle the initial listener correctly (fallback or 404
response).
2005-06-06 15:39 karl
* trunk/icecast/src/format_mp3.c: send StreamTitle in the initial
metadata block, if not real/helix has trouble with playback
2005-06-03 15:35 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/format.h, trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_ogg.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: merge intro file implementation
2005-05-31 02:48 karl
* trunk/icecast/src/format.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/source.h,
trunk/icecast/src/yp.c: missed a merge for stats update for when
the relay ends. The rest is minor stuff, type check cleanup and
code reduction in YP
2005-05-31 02:40 karl
* trunk/icecast/src/connection.c: send response header to stats
client
2005-05-30 14:50 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/connection.c, trunk/icecast/src/format_mp3.c,
trunk/icecast/src/source.c, trunk/icecast/src/source.h,
trunk/icecast/src/yp.c, trunk/icecast/src/yp.h: allow for more
updating over HUP. Made the YP engine only read the stats
instead of updating them, so source header parsing is done in
the apply mount. Per-mount stream settings also allow for
overriding the incoming settings.
2005-05-26 03:04 karl
* trunk/icecast/src/cfgfile.c, trunk/icecast/src/connection.c,
trunk/icecast/src/main.c, trunk/icecast/src/refbuf.h,
trunk/icecast/src/slave.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h, trunk/icecast/src/yp.c: various
small things. type cleanups, loop over the burst point to make
sure it is at the right point. kick off the YP 'add' 5 seconds
after source startup so that any stats are processed.
2005-05-25 01:43 karl
* trunk/icecast/src/logging.c, trunk/icecast/src/logging.h: fix
win32 access.log entries, the rest is just cosmetic
2005-05-16 00:16 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/event.c,
trunk/icecast/src/slave.c, trunk/icecast/src/slave.h,
trunk/icecast/src/source.c, trunk/icecast/src/source.h: use
minimal stats for inactive mountpoints that have an active
fallback.
2005-05-13 00:35 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/connection.c, trunk/icecast/src/slave.c: Allow
for username to be stated for master/slave setups, we still
default to 'relay' though
2005-05-10 00:28 karl
* trunk/icecast/src/fserve.c, trunk/icecast/src/fserve.h,
trunk/icecast/src/util.c, trunk/icecast/src/util.h: removed
redundant function, add total files requested to stats
2005-05-08 14:27 karl
* trunk/icecast/src/Makefile.am: missed header for dist tarball
2005-05-08 13:51 karl
* trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/compat.h, trunk/icecast/src/format.h,
trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_ogg.c,
trunk/icecast/src/source.c, trunk/icecast/src/source.h: use a
client function to read an incoming stream, simplifies handling
within the format specific files. Also add total read/sent stats
per mountpoint. Updates the stats every 5 secs currently
2005-05-08 11:54 karl
* trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/source.c: add function to do mount list search
(could be extended later), call it from various places including
the shoutcast source client auth which previously only used the
global source password.
2005-05-07 20:18 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/admin.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/cfgfile.h, trunk/icecast/src/format.h,
trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_mp3.h,
trunk/icecast/src/source.c: Allow for specifiying a per-mount
metadata interval for shoutcast style streams
2005-05-07 11:50 karl
* trunk/icecast/src/slave.c: allow for changes in relay settings
to trigger a relay restart
2005-05-07 11:01 karl
* trunk/icecast/Makefile.am, trunk/icecast/configure.in,
trunk/icecast/src/Makefile.am, trunk/icecast/src/format_flac.c,
trunk/icecast/src/format_flac.h,
trunk/icecast/src/format_midi.c,
trunk/icecast/src/format_midi.h, trunk/icecast/src/format_ogg.c,
trunk/icecast/src/format_speex.c,
trunk/icecast/src/format_speex.h: Add more Ogg codec handlers,
there has not been that much testing on these mainly due to
client support, but they are only for detection and plug
straight into the ogg handler. The win32 project files will need
updating to take the new files into account
2005-05-06 15:57 karl
* trunk/icecast/src/client.c, trunk/icecast/src/connection.c,
trunk/icecast/src/fserve.c, trunk/icecast/src/source.c,
trunk/icecast/src/stats.c, trunk/icecast/src/stats.h: merge from
branch. push clients count handling to the
client_create/_destroy functions. call client_create in the
general handler and pass client_t to the specific handler
including the stats request handler, which now logs in the
access log.
2005-05-05 20:05 karl
* trunk/icecast/src/admin.c: from branch. make streamlist.txt from
the mount list, so that fallback handling can be taken into
account. If we just use the source tree then entries can
disappear causing a relay to shutdown in the slave.
2005-05-01 02:30 karl
* trunk/icecast/src/source.c: safety check, avoid the case of a
cyclic cascading fallback
2005-05-01 02:04 karl
* trunk/icecast/src/stats.c: merge from branch, stats client
details are not being removed when they exit
2005-04-20 22:34 karl
* trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/event.c: merge from branch, make the config
lock a rwlock instead of mutex
2005-04-18 14:32 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/connection.c,
trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_mp3.h,
trunk/icecast/src/format_ogg.c,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/stats.c,
trunk/icecast/src/xslt.c: merge in a few fixes and cleanups I've
accumulated in my branch.
2005-03-14 23:41 msmith
* trunk/icecast/src/util.c: A bug report indirectly suggested the
base64 decode code was confusing (as the treatment of padding
was un-obvious), so added a comment explaining it.
2005-03-14 23:07 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/source.c: Fix various places where "clients"
stats value was decremented without having previously been
incremented.
2005-03-11 02:20 msmith
* trunk/icecast/doc/icecast2_config_file.html: Fix some docs for
bind-address: it was confusing in one point, and completely
wrong in another.
2005-03-03 04:20 j
* trunk/icecast/debian/watch: fix debian/watch too
2005-02-28 01:08 msmith
* trunk/icecast/doc/icecast2_config_file.html: Fix typos in
description of bind-address option. Fix second sentence so that
it isn't completely wrong.
2005-02-24 00:39 msmith
* trunk/icecast/src/main.c: Remove references to -h option, which
doesn't exist, and which users could only ever find out about by
running a command that did what -h claimed to do.
2005-02-19 22:44 brendan
* trunk/icecast/src/fserve.c: Whoops, don't spin if ufds is null.
2005-02-19 20:56 brendan
* trunk/icecast/src/fserve.c: The poll version of
fserve_client_waiting causes icecast to die with an assertion
when it first starts up on OS X, because ufds starts out NULL.
I'd been using the select version until now and never noticed.
2005-02-16 00:54 msmith
* trunk/icecast/src/xslt.c: Make a debug message into a warning
message, so it'll be logged more often (since it's useful), and
make it print out the file that it failed to find, so that users
can figure out what to do.
2005-01-21 06:44 msmith
* trunk/icecast/src/auth.c: Fix spelling in debug messages.
2005-01-11 16:36 karl
* trunk/icecast/src/xslt.c: only unlock when we have finished with
the stylesheet, potential race otherwise