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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595
|
2018-10-31 09:07 ph3-der-loewe
* Update: Changed set of default headers
* Improve compatibility with broken clients
2018-10-30 13:53 tbr
* Win32 clean up
* Removed all files related to the removed Windows UI
* Added files needed by NSIS
* Added batch file used to start icecast on Windows
* Include icecast.bat into Makefile
2018-10-28 10:42 ph3-der-loewe
* Fix: Worked around buffer overflows in URL auth's cURL interface
2018-10-27 17:42 ph3-der-loewe
* Security fix: Fixed buffer overflows in URL auth code.
* CVE-2018-18820
* Fix: Fixed a memory leak
* Fix: Removed integer overflows
2018-10-27 11:59 ph3-der-loewe
* Fix: Corrected possible bufferoverflows in format_prepare_headers()
2018-06-17 06:50 ph3-der-loewe
* Fix: Do not shut down fserve engine if not started up
* Fix: Corrected const for SSL_METHOD*.
2018-06-10 18:13 tbr
* Release preparation for Icecast 2.4.4
2018-05-26 06:15 ph3-der-loewe
* Fix: Fixed segfault in htpasswd auth if no filename is set
2018-05-08 07:24 ph3-der-loewe
* Fix: Do not report hashed user passworts in user list.
2018-05-05 07:23 Marvin Scholz
* Fix two mistakes in the default config's comments
2018-05-05 07:23 Marvin Scholz
* Add log message for succesful streamlist requests
2018-05-05 07:23 JRS
* Fix: update_from_master() for receiving HTTP/1.1
2018-05-05 07:23 tbr
* Fix: Spelling, thanks to Ukikie
2018-05-05 06:41 ph3-der-loewe
* Fix: Fixed a segfault when xsltApplyStylesheet() returns error
2018-04-21 10:30 ph3-der-loewe
* Fix: Do not segfaul on bad Opus streams
2018-04-21 10:29 ph3-der-loewe
* Fix: Corrected response and fixed TLS for 416 Request Range Not Satisfiable
responses
2018-04-21 10:13 ph3-der-loewe
* Fix: TLS for ICECAST_PROTOCOL_SHOUTCAST source clients
2018-04-16 13:42 Marvin Scholz
* Fix: global listener count could be negative under certain circumstances
Thanks a lot to Simeon Völkel (0xBD4E031CDB4043C9) for reporting
and investigating the bug.
2018-04-13 13:46 ph3-der-loewe
* Fix: Send "Content-Length: 0" on 100-continue
2018-04-13 11:18 ph3-der-loewe
* Fix: Do not send 100-continue in plain over TLS sockets
2016-12-27 11:49 ph3-der-loewe
* Fix: Added needed code to announce Opus streams as such to yp.
This fixes the situation at least for Opus. It should be checked
if the same problem applies to other codecs as well.
If so, maybe a better solution should be considered for 2.5.x.
2016-12-07 18:42 ph3-der-loewe
* Cleanup: Updated usage of global.running to be more clear
2016-12-07 18:38 ph3-der-loewe
* Fix: Avoid invalid locking in signal handlers.
2016-10-29 11:42 ph3-der-loewe
* Workaround: avoid libspeex printing warnings on Opus streams.
2016-08-15 11:51 ph3-der-loewe
* Fix: Fixed regression introduced by r19250.
This fixes the regression introduced by r19250
(461a537561580cb32dac327bae73f7e670188bd4).
The fix checks if the source client is actually
known before printing it's IP-Address.
2016-02-10 10:00 ph3-der-loewe
* Fix: do not allow unescaped strings in XML output.
2015-12-24 00:38 ph3-der-loewe
* RELEASE 2.4.3
* Windows security fix: remove trailing dots in URI
This addresses CVE-2005-0837 (sic!), which was sadly ignored after
ticket #635 got closed erroneously.
* Linux/Unix installations were never affected, Windows only release!
* Impact is low: most installations run default XSLT files and
there is nothing to be learned in such a case. Also a majority
of production Icecast servers don't run on Windows.
2015-04-08 10:07:42 dm8tbr
* RELEASE 2.4.2
* 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
<svante.signell@gmail.com>)
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,
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 martin@matuska.org: 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
Jason@weatherserver.net - 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
moinakg2002@yahoo.com; 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
2005-01-03 17:48 karl
* trunk/icecast/doc/icecast2_yp.html, trunk/icecast/src/admin.c,
trunk/icecast/src/format_ogg.c: small fixes
2005-01-03 17:36 oddsock
* trunk/icecast/win32/icecast2.iss: added auth.xsl to installer..
2004-12-29 18:02 giles
* trunk/icecast/doc/icecast2_config_file.html: Correct a typo.
2004-12-21 20:06 oddsock
* trunk/icecast/icecast.spec: update of the spec file..
2004-12-21 19:36 oddsock
* trunk/icecast/ChangeLog, trunk/icecast/configure.in,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/icecast2_console.dsp: version bump to 2.2.0
* trunk/icecast/conf/icecast_shoutcast_compat.xml.in: small update
to the shoutcast compat example config
2004-12-21 19:23 oddsock
* trunk/icecast/src/xslt.c: remove depricated include file
2004-12-18 00:11 karl
* trunk/icecast/src/format.c, trunk/icecast/src/fserve.c: minor
type cleanup in fserve, include correct header for ogg
2004-12-17 21:05 karl
* trunk/icecast/src/format_ogg.c,
trunk/icecast/src/format_vorbis.c: make vorbis specific stat
names consistent with the existing ones, and make sure if
unknown ogg codecs are sent then it is logged
2004-12-17 20:03 karl
* trunk/icecast/src/format_ogg.c, trunk/icecast/src/yp.c: make
recent YP updates follow agreed spec
2004-12-14 22:43 oddsock
* trunk/icecast/win32/Icecast2win.dsw,
trunk/icecast/win32/icecast2.iss:
2004-12-14 16:32 oddsock
* trunk/icecast/ChangeLog, trunk/icecast/NEWS,
trunk/icecast/configure.in, trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/icecast2_console.dsp: version bump (for
2.2RC1) update of NEWS (new features for 2.2) update of ChangeLog
2004-12-10 23:24 oddsock
* trunk/icecast/src/admin.c: removed unneeded variable
2004-12-10 17:27 karl
* trunk/icecast/src/yp.c: fix minor memory leak
2004-12-10 00:11 karl
* trunk/icecast/src/format_ogg.c, trunk/icecast/src/format_ogg.h,
trunk/icecast/src/format_theora.c,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/yp.c,
trunk/icecast/src/yp.h: add subtype to yp add phase, this is to
identify the codecs in use
2004-12-09 17:08 karl
* trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/cfgfile.c, trunk/icecast/src/slave.c,
trunk/icecast/src/slave.h: allow a relay to provide user/pass
when connecting
2004-12-09 17:04 karl
* trunk/icecast/Makefile.am: include m4 for theora in dist
2004-12-08 20:13 j
* trunk/icecast/src/format_theora.c, trunk/icecast/web/status.xsl:
- add video_quality - update status.xsl with new info about
theora streams
2004-12-08 19:31 karl
* trunk/icecast/src/format_theora.c: added theora stats
2004-12-08 02:36 karl
* trunk/icecast/src/yp.c: I should fix the leak properly :)
2004-12-08 02:30 karl
* trunk/icecast/src/stats.c: duplicate unlock left in
2004-12-08 02:28 karl
* trunk/icecast/src/yp.c: provide max_listeners to YP, yp touch
fixup and minor memory leak fixed
2004-12-07 22:29 oddsock
* trunk/icecast/admin/Makefile.am,
trunk/icecast/admin/listclients.xsl,
trunk/icecast/admin/listmounts.xsl,
trunk/icecast/admin/manageauth.xsl,
trunk/icecast/admin/stats.xsl,
trunk/icecast/admin/updatemetadata.xsl,
trunk/icecast/conf/icecast_minimal.xml.in,
trunk/icecast/src/admin.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/cfgfile.h, trunk/icecast/src/yp.c,
trunk/icecast/src/yp.h: add a new web admin feature which allows
the updating of metadata (now that we support metadata updates
for most stream types). This is an new admin feature. add
cluster-password to the config to allow for future clustering of
relays on the xiph stream directory.
2004-12-07 21:50 oddsock
* trunk/icecast/win32/icecast2.iss: add extra config files
2004-12-07 21:48 oddsock
* trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2_console.dsp: update project files
to include Theora
2004-12-07 21:47 oddsock
* trunk/icecast/src/format_ogg.c: win32 compile
2004-12-07 21:06 karl
* trunk/icecast/configure.in, trunk/icecast/src/Makefile.am,
trunk/icecast/src/admin.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/format_ogg.h,
trunk/icecast/src/format_theora.c,
trunk/icecast/src/format_theora.h,
trunk/icecast/src/format_vorbis.c,
trunk/icecast/src/format_vorbis.h, trunk/icecast/src/refbuf.c,
trunk/icecast/src/refbuf.h, trunk/icecast/src/source.c: merge
multi ogg codec handling. Handle theora and/or vorbis. Place new
clients before keyframe. For vorbis-only streams, perform
rebuild to flush pages more frequently and to provide url
updating mechanism for titles
2004-11-22 18:21 karl
* trunk/icecast/conf/icecast.xml.in,
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/source.c,
trunk/icecast/src/source.h, trunk/icecast/src/stats.c,
trunk/icecast/src/stats.h: merge per-mount hidden setting.
prevent specific mountpoints being listed on status.xsl and
streamlist
2004-11-21 15:51 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/source.c, trunk/icecast/src/source.h: add
per-mount no-yp tag handling
2004-11-20 02:16 karl
* trunk/icecast/conf/icecast.xml.in, trunk/icecast/src/auth.h,
trunk/icecast/src/format.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/md5.c, trunk/icecast/src/md5.h: minor cleanups
2004-11-19 23:04 karl
* trunk/icecast/src/admin.c: skip the listing of the source
mountpoint when moveclients is requested without a destination
2004-11-19 15:05 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/connection.c: allow
for shoutcast metadata updates to auth with
admin/per-mount/global source password
2004-11-18 23:49 oddsock
* trunk/icecast/src/admin.c, 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_vorbis.c, trunk/icecast/src/source.c,
trunk/icecast/src/yp.c: handle supported content-types in a more
generic way now. This will allow things like AAC, AACPlus, NSV,
and others to be streamed through icecast. We have a special
case for vorbis streams, and everything else falls into the
generic case.
2004-11-18 19:47 karl
* trunk/icecast/src/admin.c: missing test from a previous patch,
the running check needs to apply as well
2004-11-17 20:35 karl
* trunk/icecast/src/format_mp3.c: prevent updated metadata being
passed to listeners when the text hasn't actually changed
2004-11-17 16:02 karl
* trunk/icecast/conf/icecast.xml.in,
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/source.c, trunk/icecast/src/yp.c,
trunk/icecast/web/status.xsl: add <shoutcast-mount>. drop the
hardcoded mountpoint hacks for NSV
2004-11-17 14:12 karl
* trunk/icecast/src/fserve.c: pass the fserve_t not the client_t
2004-11-16 04:27 oddsock
* trunk/icecast/src/fserve.c: need to fail properly
2004-11-16 04:04 oddsock
* trunk/icecast/conf/icecast.xml.in,
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_vorbis.c,
trunk/icecast/src/logging.c, trunk/icecast/src/logging.h,
trunk/icecast/src/main.c: this patch adds a playlist log to
icecast. This can be used to maintain an audit trail of metadata
that comes through icecast. The format of the log file may be
changed in the future as we decide on a good format.
2004-11-15 15:55 oddsock
* trunk/icecast/src/fserve.c: darn ansi C.....
2004-11-15 15:50 oddsock
* trunk/icecast/src/fserve.c: a few fixes from karl...
2004-11-15 03:53 oddsock
* trunk/icecast/src/fserve.c: should be a long long, instead of a
long
2004-11-15 03:50 oddsock
* trunk/icecast/src/fserve.c: much better support for the Range
request header, which means that seeking actually *works* now
for file serving.
2004-11-11 22:36 msmith
* trunk/icecast/src/compat.h, trunk/icecast/src/fserve.c,
trunk/icecast/src/fserve.h: Use 64 bit content-length for
fileserving (if supported by system)
2004-11-11 22:25 oddsock
* trunk/icecast/conf/icecast_minimal.xml.in,
trunk/icecast/conf/icecast_shoutcast_compat.xml.in: ok, how
about I actually include these :)
2004-11-11 16:21 oddsock
* trunk/icecast/src/fserve.c, trunk/icecast/src/fserve.h: add
Content-Length to files served via the fserve to enable seeking
2004-11-11 15:47 oddsock
* trunk/icecast/conf/Makefile.am,
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/format.h,
trunk/icecast/src/slave.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h, trunk/icecast/src/util.c,
trunk/icecast/src/util.h, trunk/icecast/src/yp.c,
trunk/icecast/web/status.xsl: * support for the Shoutcast DSP
(yay!). You can now use the Shoutcast DSP as a source client.
The connection protocol is a bit odd, and we had to handle it
separately, and thus we've added a new config option
(<shoutcast-compat>) that is set at the listener port level. *
support for NSV (and the nsvscsrc source client). After adding
support for the connection protocol of the shoutcast DSP, adding
NSV was just a simple of a few special handling cases. * removed
all traces of the earlier attempt at the shoutcast DSP
connection protocol * Due to the growing complexity of the
config files, I've also created a few alternate config files,
namely one for a "shoutcast compat" setup as well as a "minimal"
one for quick basic configurations.
2004-11-08 17:41 oddsock
* trunk/icecast/admin/listclients.xsl,
trunk/icecast/admin/listmounts.xsl,
trunk/icecast/admin/manageauth.xsl,
trunk/icecast/admin/moveclients.xsl,
trunk/icecast/admin/stats.xsl, trunk/icecast/web/auth.xsl,
trunk/icecast/web/status.xsl: fixed a issue that is seen only
with the win32 build of icecast, and with no sources connected.
2004-11-06 17:16 oddsock
* trunk/icecast/NEWS: changed description of multi-level fallbacks
2004-11-04 16:51 oddsock
* trunk/icecast/ChangeLog, trunk/icecast/Makefile.am,
trunk/icecast/NEWS, trunk/icecast/configure.in,
trunk/icecast/icecast.spec, trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: updated version tags to 2.1.0
- prepping for release
2004-11-04 15:55 oddsock
* trunk/icecast/src/format_mp3.c: added a content-length for
flash-based players. This will allow for them to stream mp3 from
icecast.
2004-11-01 23:41 karl
* trunk/icecast/src/fserve.c: add fallback mime type for css
2004-10-29 20:32 oddsock
* trunk/icecast/win32/icecast2.iss: typo..whoops
2004-10-29 20:29 oddsock
* trunk/icecast/win32/icecast2.iss: version bump for RC2
2004-10-29 20:27 oddsock
* trunk/icecast/configure.in, trunk/icecast/icecast.spec,
trunk/icecast/win32/icecast.dsp: version bump for RC2
2004-10-29 20:26 oddsock
* trunk/icecast/NEWS: added bit about multi-level fallbacks
2004-10-29 17:19 karl
* trunk/icecast/doc/icecast2_config_file.html: small doc update
2004-10-29 15:31 oddsock
* trunk/icecast/src/source.c, trunk/icecast/web/status.xsl: * fix
bug of not using url decoding value when processing audio_info
string * we now process server name and description if we are
not a public stream * Added quality to status.xsl
2004-10-28 16:11 oddsock
* trunk/icecast/ChangeLog, trunk/icecast/HACKING,
trunk/icecast/NEWS, trunk/icecast/TODO: Added a changelog (via
svn2cl) and updated NEWS....
2004-10-27 17:52 oddsock
* trunk/icecast/web/Makefile.am: forgot to add auth.xsl to the
automake Makefile
2004-10-27 14:13 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/stats.c, trunk/icecast/src/yp.c: correct type
for volatile usage and uncomment log message for stats updating
2004-10-27 14:09 oddsock
* trunk/icecast/icecast.spec: version bump
2004-10-27 03:29 oddsock
* trunk/icecast/src/slave.c: add volatile keywords to a few
variables reset max_interval back to 0 on slave initialization
2004-10-26 21:34 oddsock
* trunk/icecast/configure.in: version bump
2004-10-26 19:50 oddsock
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: version bump
2004-10-26 19:29 karl
* trunk/icecast/src/connection.c: An alias could disappear from
under us, so copy the string
2004-10-26 16:31 karl
* trunk/icecast/src/connection.c: small updates. reject source
client with invalid mountpoint, avoid aliasing issues with queue
and id, and change handler to avoid leaving clients on the
connection queue (rare)
2004-10-26 14:21 karl
* trunk/icecast/src/format.h, trunk/icecast/src/source.c,
trunk/icecast/src/xslt.c, trunk/icecast/src/xslt.h: small
cleanups. fix buffer sizing, const and unused struct member
2004-10-25 22:44 oddsock
* trunk/icecast/doc/Makefile.am, trunk/icecast/doc/icecast2.chm:
CHM doesn't need to be versioned.
2004-10-25 21:10 karl
* trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/yp.c: avoid aliasing issues, and make sure
each server can take a seperate default interval as defined in
the xml
2004-10-25 20:46 karl
* trunk/icecast/src/source.c: the check for the public stream flag
wasn't working correctly in all cases
2004-10-25 20:07 oddsock
* trunk/icecast/doc/Makefile.am: missing
icecast2_listenerauth.html from Makefile.am
2004-10-25 18:51 karl
* trunk/icecast/src/source.c: add check for header when relaying
from v2.0
2004-10-25 15:51 oddsock
* trunk/icecast/src/logging.c: fix line endings...
2004-10-25 15:42 karl
* trunk/icecast/src/admin.c: a couple of potential bad pointer
type problems
2004-10-25 15:17 oddsock
* trunk/icecast/win32/Makefile.am: remove ResizableDialog[.cpp|.h]
from automake Makefile...
2004-10-25 14:48 oddsock
* trunk/icecast/win32/Icecast2win.dsp: removal of
ResizableDialog[.cpp|.h] from the project file.
2004-10-25 14:43 oddsock
* trunk/icecast/src/logging.c: Fix CLF on win32. Apparently,
windows doesn't support the %z flag of strftime() so we need to
roll our own...Buzilla Bug #509
2004-10-25 14:03 karl
* trunk/icecast/src/source.c, trunk/icecast/src/stats.c,
trunk/icecast/src/stats.h: The _inc/_dec routines can race
causing incorrect values as they don't account for unprocessed
stat events. Here I push the actual calculations to the stats
thread. The API is maintained however all stats for a specific
source can be dropped with one call now.
2004-10-24 00:34 karl
* trunk/icecast/src/fserve.c, trunk/icecast/src/fserve.h: fix a
busy CPU case when slow and fast file serving clients are
connected at the same time. Flag clients on return from
select/poll and only process those. Also fix a rare race which
could leave clients in pending
2004-10-23 00:44 karl
* trunk/icecast/src/slave.c, trunk/icecast/src/slave.h: When
starting relay threads, have the relay thread do the connection
not the slave thread. Also improve cleanup handling and log
messages as well
2004-10-22 15:41 oddsock
* trunk/icecast/win32/ConfigTab.cpp,
trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/Icecast2win.rc,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/Icecast2winDlg.h,
trunk/icecast/win32/ResizableDialog.cpp,
trunk/icecast/win32/ResizableDialog.h,
trunk/icecast/win32/StatsTab.cpp,
trunk/icecast/win32/Status.cpp,
trunk/icecast/win32/TabPageSSL.cpp,
trunk/icecast/win32/TabPageSSL.h, trunk/icecast/win32/black.bmp:
Remove ResizableDialog logic from the UI due to possible license
conflicts..
2004-10-12 21:37 oddsock
* trunk/icecast/win32/icecast.dsp: added HAVE_OLD_VSNPRINTF to
project options
2004-10-12 04:49 msmith
* trunk/icecast/src/main.c: Correct a typo in one message, and
change "WARNING" to "ERROR" in another, since it's a fatal error.
2004-10-07 22:22 j
* 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/web/auth.xsl, trunk/icecast/web/status.xsl,
trunk/icecast/web/status2.xsl: property 'svn:executable' deleted
from *.xsl
2004-10-07 22:19 j
* 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/web/auth.xsl,
trunk/icecast/web/corner_bottomleft.jpg,
trunk/icecast/web/corner_bottomright.jpg,
trunk/icecast/web/corner_topleft.jpg,
trunk/icecast/web/corner_topright.jpg,
trunk/icecast/web/icecast.png, trunk/icecast/web/key.gif,
trunk/icecast/web/status.xsl, trunk/icecast/web/status2.xsl,
trunk/icecast/web/style.css: update admin interface to use xhtml
2004-10-05 00:25 msmith
* trunk/icecast/doc/icecast2_admin.html: Fix up a formatting
problem, make it clear that this sentence is talking about HTTP
authentication.
2004-10-05 00:24 msmith
* trunk/icecast/doc/icecast2_admin.html: Docs said admin
username/password is required for all admin functionality. Fix
to state that for mount-specific admin, you can use this OR the
mount username/password.
2004-10-01 00:47 msmith
* trunk/icecast/doc/icecast2_config_file.html: .. And fix more
instances of missing / on mountpoints
2004-10-01 00:42 msmith
* trunk/icecast/src/source.c: When creating a source (in
source_reserve), issue a warning if the mountpoint does not
start with a /, since clients will then be unable to connect to
it
2004-10-01 00:39 msmith
* trunk/icecast/doc/icecast2_config_file.html: Correct two
examples to use a leading slash for a mountpoint name
2004-09-18 21:01 j
* trunk/icecast/doc/icecast2_admin.html,
trunk/icecast/doc/icecast2_basicsetup.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_section3.html: This Page Tentatively
Validates As XHTML 1.0 Strict (Tentatively Valid)!
2004-09-18 20:14 j
* trunk/icecast/doc/icecast2_admin.html,
trunk/icecast/doc/icecast2_basicsetup.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/style.css,
trunk/icecast/doc/win32_section1.html,
trunk/icecast/doc/win32_section2.html,
trunk/icecast/doc/win32_section3.html: replace table with hr+css
2004-09-18 16:50 j
* trunk/icecast/doc/icecast2_basicsetup.html,
trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/doc/icecast2_introduction.html,
trunk/icecast/doc/win32_section1.html: - more xhtmlification of
the icecast docs
2004-09-18 14:31 j
* trunk/icecast/doc/icecast2_admin.html,
trunk/icecast/doc/icecast2_basicsetup.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/style.css,
trunk/icecast/doc/win32_section1.html,
trunk/icecast/doc/win32_section2.html,
trunk/icecast/doc/win32_section3.html: - convert icecast
documentation to xhtml - clean up html code - sync index.html
with README
2004-09-15 14:21 karl
* trunk/icecast/src/yp.c: the YP code could end up maintaining
duplicate entries if the source reconnect delay is very short.
2004-08-23 19:01 karl
* trunk/icecast/src/client.c: passed pointer could be NULL
2004-08-22 15:00 karl
* trunk/icecast/conf/icecast.xml.in, trunk/icecast/src/source.h:
add optional tags to example xml and remove unused source_t item
2004-08-21 12:56 karl
* trunk/icecast/src/slave.c, trunk/icecast/src/yp.h: Add a couple
of warnings, YP code not built and failed streamlist from master
server
2004-08-20 22:59 karl
* trunk/icecast/src/util.c: unlikely to occur race, but fix it
anyway
2004-08-20 22:55 karl
* trunk/icecast/src/source.c: small memory leak, only happened
when a source exited
2004-08-20 21:40 karl
* trunk/icecast/src/event.c, trunk/icecast/src/logging.c,
trunk/icecast/src/logging.h: make caller of restart_logging pass
the config, don't assume it's locked
2004-08-20 19:46 karl
* trunk/icecast/configure.in: update version, this isn't the
offical release
2004-08-20 19:22 karl
* trunk/icecast/doc/icecast2_config_file.html: add burst-size,
fallback-override tags and descriptions, add missing / in end
tags
2004-08-20 15:13 karl
* trunk/icecast/src/admin.c, 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_mp3.h,
trunk/icecast/src/format_vorbis.c,
trunk/icecast/src/format_vorbis.h, trunk/icecast/src/refbuf.c,
trunk/icecast/src/refbuf.h, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: merged singleq branch 7177:7591
2004-08-10 05:17 msmith
* trunk/icecast/src/main.c: -b was broken. Fix it.
2004-08-07 02:33 karl
* trunk/icecast/src/stats.c: encode any xml entities in the stats
before applying them to the xsl pages
2004-07-31 22:25 oddsock
* trunk/icecast/src/connection.c: fix m3u generation logic that
was not working for static files
2004-07-23 02:49 msmith
* trunk/icecast/src/main.c: Make it even more explicit what went
wrong when log opening failed, since many people don't seem to
be able to figure it out.
2004-07-22 20:18 oddsock
* trunk/icecast/doc/icecast2_admin.html: Documentation patch from
Myke Place...
2004-07-22 18:34 oddsock
* trunk/icecast/src/cfgfile.c: forgot to switch the default value
too..thanks Brendan..
2004-07-22 13:38 oddsock
* trunk/icecast/conf/icecast.xml.in: enable burst on connect by
default per jack.
2004-07-16 15:47 karl
* trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/format.c, trunk/icecast/src/format_mp3.c,
trunk/icecast/src/fserve.c, trunk/icecast/src/source.c: cleanup
patch, push per client write error trap lower down
2004-07-12 02:21 brendan
* trunk/icecast/src/format_mp3.c: Add source comment to previous
metadata bug fix: [sic]
2004-07-11 16:50 brendan
* trunk/icecast, trunk/icecast/.cvsignore, trunk/icecast/admin,
trunk/icecast/admin/.cvsignore, trunk/icecast/conf,
trunk/icecast/conf/.cvsignore, trunk/icecast/debian,
trunk/icecast/debian/.cvsignore, trunk/icecast/doc,
trunk/icecast/doc/.cvsignore, trunk/icecast/src,
trunk/icecast/src/.cvsignore, trunk/icecast/web,
trunk/icecast/web/.cvsignore, trunk/icecast/win32,
trunk/icecast/win32/.cvsignore, trunk/icecast/win32/res,
trunk/icecast/win32/res/.cvsignore: Migrate .cvsignore to
svn:ignore
2004-07-11 16:46 brendan
* trunk/icecast/src/format_mp3.c: The inline metadata text was
losing the final character when the string length was a multiple
of 16.
2004-07-11 15:12 brendan
* trunk/icecast: Add svn:externals for shared modules
2004-06-25 18:25 karl
* trunk/icecast/src/yp.c: wait 5 mins on failed YP request, also
log a default message if no error message is sent back
2004-06-06 03:08 giles
* trunk/icecast/src/source.c: Recommit of changes lost in the
server migration Original commit (r6810) 2004-06-04 03:15:36
-0400 (Fri, 04 Jun 2004) by msmith. Fix #526. Fallbacks weren't
being found when the primary was disconnected (for
newly-connecting clients).
2004-06-02 19:34 karl
* trunk/icecast/src/yp.c: make sure YP entries are flushed out
when a source stops. Avoid segv on failed icecast startup and
add some log messages.
2004-05-26 02:37 oddsock
* trunk/icecast/src/yp.c, trunk/icecast/win32/icecast.dsp: remove
geturl.c from icecast.dsp add a #define for snprintf for win32
2004-05-17 04:33 oddsock
* trunk/icecast/conf/icecast.xml.in,
trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/doc/icecast2_listenerauth.html,
trunk/icecast/src/auth.c, trunk/icecast/src/auth.h,
trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/connection.c: added ability to disallow
concurrent connections from the same username if using htpasswd
listener authentication.
2004-05-11 02:24 msmith
* trunk/icecast/src/format.c: Some servers apparently send a
Content-Type header of audio/x-mpeg. Make icecast understand
this.
2004-05-10 16:17 karl
* trunk/icecast/configure.in, trunk/icecast/src/Makefile.am,
trunk/icecast/src/admin.c, trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/geturl.c,
trunk/icecast/src/geturl.h, trunk/icecast/src/main.c,
trunk/icecast/src/source.c, trunk/icecast/src/source.h,
trunk/icecast/src/yp.c, trunk/icecast/src/yp.h: Update of the YP
code. This should resolve several YP issues that have been
reported, the main one being icecast instability when there is a
YP server outage.
2004-05-05 05:05 msmith
* trunk/icecast/src/auth.c: Use remove() then rename() only on
win32 - where it's required. Don't use it on unix systems, which
don't need it, and where doing _only_ rename() preserves
atomicity.
2004-05-03 15:00 oddsock
* trunk/icecast/conf/icecast.xml.in,
trunk/icecast/doc/icecast2.hhc,
trunk/icecast/doc/icecast2_listenerauth.html,
trunk/icecast/doc/index.html,
trunk/icecast/doc/listener_auth1.jpg,
trunk/icecast/doc/listener_auth2.jpg,
trunk/icecast/doc/listener_auth3.jpg: much better documentation
of listener authentication
2004-05-03 14:59 oddsock
* trunk/icecast/src/auth.c: some special handling with rename()
needed for win32
2004-05-03 14:56 oddsock
* trunk/icecast/src/admin.c: proper config file handling...
2004-05-03 14:55 oddsock
* trunk/icecast/src/format.c: patch to allow public listing of
shoutcast servers that are relaying icecast streams
2004-04-30 17:32 oddsock
* trunk/icecast/src/admin.c, trunk/icecast/web/auth.xsl,
trunk/icecast/web/status.xsl: created an auth page which can be
used to serve appropriate m3u's which contain authentication
information.
2004-04-30 16:44 oddsock
* trunk/icecast/admin/manageauth.xsl, trunk/icecast/web/key.gif:
new files
2004-04-30 14:36 oddsock
* trunk/icecast/admin/Makefile.am,
trunk/icecast/admin/listclients.xsl,
trunk/icecast/admin/listmounts.xsl,
trunk/icecast/admin/stats.xsl,
trunk/icecast/conf/icecast.xml.in,
trunk/icecast/doc/icecast2_config_file.html,
trunk/icecast/src/admin.c, trunk/icecast/src/auth.c,
trunk/icecast/src/auth.h, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/source.c, trunk/icecast/web/Makefile.am,
trunk/icecast/win32/icecast2.iss: added web based interface to
htpasswd client authentication
2004-04-30 02:28 msmith
* trunk/icecast/conf/icecast.xml.in, trunk/icecast/src/cfgfile.c:
Disable burst-on-connect by default
2004-04-29 15:23 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/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/refbuf.c,
trunk/icecast/src/refbuf.h, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: new feature in icecast :
burst-on-connect - allows an initial burst of data to connecting
listeners, thus reducing the startup time of a stream.
2004-04-28 20:58 oddsock
* trunk/icecast/conf/icecast.xml.in: added small comment about
<hostname>
2004-04-25 23:28 oddsock
* trunk/icecast/src/source.c, trunk/icecast/win32/icecast.dsp:
added HAVE_LOCALTIME_R to project file added #define for
snprintf (win32 requires _snprintf)
2004-04-20 07:05 msmith
* trunk/icecast/src/client.c: Fix copy/paste error in sending 400
errors (reported by wayne zhao).
2004-04-19 02:55 msmith
* trunk/icecast/src/util.c: Fix overflow when base64 decoding
invalid base64.
2004-04-07 01:53 msmith
* trunk/icecast/src/main.c: Give details in error messages on
failure to open log files.
2004-03-23 23:34 msmith
* trunk/icecast/web/status.xsl: Fix to default status.xsl: we were
looking for server_url as an attribute rather than an element
incorrectly in one place, this fixes it so that the link is
correct. Patch from Dave St John.
2004-03-22 03:41 brendan
* trunk/icecast: externals can't use relative URLs. Just check out
the modules yourself for now...
2004-03-22 03:32 brendan
* trunk/icecast: Let's see if svn:externals works with relative
paths
2004-03-22 03:04 msmith
* trunk/icecast/TODO: Remove obsolete bits from TODO
2004-03-22 02:16 msmith
* trunk/icecast/src/main.c: Make icecast keep parsing command line
options after -c. Error message if fork fails. All untested; the
conversion broke the build.
2004-03-21 01:47 giles
* icecast, trunk/icecast: regularize repository layout
2004-03-21 01:46 giles
* icecast, trunk: regularize repository layout
2004-03-21 00:08 giles
* trunk, trunk/icecast: move the icecast source tree to the
icecast project directory
2004-03-09 23:52 msmith
* trunk/icecast/src/main.c: Another patch from Dale Ghent, this
silences some warnings from the compiler.
2004-03-09 23:49 msmith
* trunk/icecast/src/md5.h: Revert previous; this was fixed in a
better way.
2004-03-09 23:41 msmith
* trunk/icecast/src/md5.h: Use sys/types.h in md5.c, patch from
Dale Ghent
2004-03-09 18:33 giles
* trunk/icecast/src/compat.h: Include inttypes.h from the
compatibility header if it's available and stdint.h is not. This
provides the stdint types on solaris and a number of other
non-C99 platforms.
2004-03-09 02:36 msmith
* trunk/icecast/configure.in, trunk/icecast/src/source.c: Couple
of minor contributed patches. - Solaris/autoconf nanosleep
checking - use time_t as appropriate for yp
2004-03-02 00:10 msmith
* trunk/icecast/src/md5.c: Oops. Hack up the macro some more so it
compiles properly.
2004-03-01 02:28 msmith
* trunk/icecast/src/md5.c: Fix macro to use ; instead of , This
gets rid of some warnings in later gcc versions.
2004-02-29 14:55 karl
* trunk/icecast/src/admin.c: remove warning wrt time_t
2004-02-29 14:38 karl
* trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/format_mp3.c: free up any per-client format
specific resources, fixes a small memory leak with mp3 streams
2004-02-27 15:15 karl
* trunk/icecast/src/cfgfile.h, trunk/icecast/src/connection.c,
trunk/icecast/src/slave.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: update move clients code, small
cleanups in other places
2004-02-26 16:51 karl
* trunk/icecast/src/source.c, trunk/icecast/src/source.h: separate
source initialisation, and collect the YP setup code into one
area
2004-02-26 11:56 karl
* trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/connection.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: Add per mount queue size and source
timeout, which can override the general settings.
2004-02-26 10:39 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/format.h,
trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_vorbis.c: revert previous patch, mike
didn't want it...
2004-02-25 21:43 karl
* trunk/icecast/src/admin.c: add missing lock on source tree
2004-02-25 20:23 karl
* trunk/icecast/src/format.h, trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_vorbis.c: send mp3 url metadata into a
format specific routine
2004-02-25 20:11 karl
* trunk/icecast/src/admin.c: *** empty log message ***
2004-02-25 16:24 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: move the source client '200 OK'
response to the source client specific part of the source
thread, and rearrange stats around that
2004-02-24 22:34 karl
* trunk/icecast/Makefile.am: Add target for building icecast
against static libs only
2004-02-24 21:02 karl
* trunk/icecast/src/main.c: small cleanup and don't shutdown curl
too early
2004-02-20 17:42 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/connection.c,
trunk/icecast/src/slave.c, trunk/icecast/src/source.c: Add
accumulative stats back for source connections and don't hold
locks while writing responses back to the client.
2004-02-20 02:09 msmith
* trunk/icecast/src/stats.c: Oops. As oddsock says, this was
broken, and didn't compile, and was unneccesary anyway. reverted.
2004-02-20 01:25 msmith
* trunk/icecast/src/stats.c: Patch for preventing stats from
staying around too long - stats thread should only go to sleep
when it has nothing to do.
2004-02-19 21:16 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/source.c, trunk/icecast/src/source.h: Make
source client connections reserve the source mountpoint and get
rid of the unused source setup code.
2004-02-19 20:28 karl
* trunk/icecast/src/cfgfile.h, trunk/icecast/src/connection.c,
trunk/icecast/src/global.c, trunk/icecast/src/global.h,
trunk/icecast/src/slave.c, trunk/icecast/src/slave.h,
trunk/icecast/src/source.c: Make the slave thread reserve relay
mountpoints, and prevent reconnection when a relay is currently
active.
2004-02-19 16:32 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/source.c, trunk/icecast/src/source.h:
functions to allow for reserving a source_t with a mountpoint
2004-02-19 15:24 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/connection.c,
trunk/icecast/src/yp.c: Add checks for whether a source is active
2004-02-19 14:48 karl
* trunk/icecast/src/cfgfile.c, trunk/icecast/src/source.c: small
YP memory cleanup
2004-02-17 15:46 karl
* trunk/icecast/src/cfgfile.c, trunk/icecast/src/source.c: minor
cleanup
2004-02-17 00:09 karl
* trunk/icecast/src/source.c: fix possible bad pointer reference
when finding fallback mount
2004-02-16 21:59 karl
* trunk/icecast/src/geturl.c, trunk/icecast/src/source.c,
trunk/icecast/src/yp.c: YP related cleanup, avoid bad pointer
reference on HUP
2004-02-10 04:37 msmith
* trunk/icecast/src/format_mp3.c: I Hate String Handling In C.
2004-02-10 04:29 msmith
* trunk/icecast/src/format_mp3.c: Another fix: the length of the
_string_ is not the same as the metadata length (the metadata is
null-padded out to a multiple of 16 bytes), so we have to deal
with that.
2004-02-10 04:20 msmith
* trunk/icecast/src/format_mp3.c: Oops. Fix null-terminator.
2004-02-10 03:50 msmith
* trunk/icecast/src/admin.c, trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_mp3.h: Fire off stats event for
metadata updates when we get metadata inline. This fixes
stats.xml listings for mp3 slave relays with metadata. We get
rid of 'metadata_raw', since we now have to format out that
stuff anyway.
2004-02-05 00:00 oddsock
* trunk/icecast/admin/listclients.xsl: fixed a title
2004-02-04 23:56 oddsock
* trunk/icecast/admin/listclients.xsl,
trunk/icecast/admin/listmounts.xsl,
trunk/icecast/admin/moveclients.xsl,
trunk/icecast/admin/response.xsl, trunk/icecast/admin/stats.xsl,
trunk/icecast/web/Makefile.am,
trunk/icecast/web/corner_bottomleft.jpg,
trunk/icecast/web/corner_bottomright.jpg,
trunk/icecast/web/corner_topleft.jpg,
trunk/icecast/web/corner_topright.jpg,
trunk/icecast/web/icecast.png, trunk/icecast/web/status.xsl,
trunk/icecast/web/style.css: after way too long with an ugly
admin interface, lets go with a
slightly-less-ugly-admin-interface-that-is-at-least-similar-to-the-website.
2004-02-03 00:48 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/client.c: minor
cleanup
2004-02-03 00:29 karl
* trunk/icecast/src/format.c, trunk/icecast/src/format_mp3.c:
cleanup headers sent to listeners
2004-02-02 19:22 karl
* trunk/icecast/src/event.c, trunk/icecast/src/slave.c,
trunk/icecast/src/slave.h: recheck the relays after the HUP has
been handled
2004-01-29 23:23 karl
* trunk/icecast/configure.in, trunk/icecast/src/connection.c:
minor cleanup
2004-01-29 16:46 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/connection.c,
trunk/icecast/src/source.c, trunk/icecast/src/source.h: cleanup
duplicate work, fix rare but potential deadlock, and fix silly
bug introduced ealrier
2004-01-29 01:02 msmith
* trunk/icecast/README: Note GPL license in readme file.
* trunk/httpp/httpp.c, trunk/httpp/httpp.h,
trunk/icecast/src/admin.c, trunk/icecast/src/admin.h,
trunk/icecast/src/auth.c, trunk/icecast/src/auth.h,
trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/compat.h, trunk/icecast/src/configtest.c,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/event.c, trunk/icecast/src/event.h,
trunk/icecast/src/format.c, trunk/icecast/src/format.h,
trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_mp3.h,
trunk/icecast/src/format_vorbis.c,
trunk/icecast/src/format_vorbis.h, trunk/icecast/src/fserve.c,
trunk/icecast/src/fserve.h, trunk/icecast/src/geturl.c,
trunk/icecast/src/geturl.h, trunk/icecast/src/global.c,
trunk/icecast/src/global.h, trunk/icecast/src/logging.c,
trunk/icecast/src/logging.h, trunk/icecast/src/main.c,
trunk/icecast/src/md5.c, trunk/icecast/src/md5.h,
trunk/icecast/src/os.h, trunk/icecast/src/refbuf.c,
trunk/icecast/src/refbuf.h, trunk/icecast/src/sighandler.c,
trunk/icecast/src/sighandler.h, trunk/icecast/src/slave.c,
trunk/icecast/src/slave.h, trunk/icecast/src/source.c,
trunk/icecast/src/source.h, trunk/icecast/src/stats.c,
trunk/icecast/src/stats.h, trunk/icecast/src/util.c,
trunk/icecast/src/util.h, trunk/icecast/src/xslt.c,
trunk/icecast/src/xslt.h, trunk/icecast/src/yp.c,
trunk/icecast/src/yp.h, trunk/log/log.c, trunk/log/log.h,
trunk/timing/timing.c, trunk/timing/timing.h: Add Copyright
notice to each source file, as requested by debian.
2004-01-28 23:23 karl
* trunk/icecast/src/main.c: change thread startup/shutdown order
slightly wrt to slave thread
2004-01-28 02:17 karl
* trunk/icecast/src/admin.c: oops, missed these from previous
commit, the lock is now taken further up
2004-01-28 01:22 karl
* trunk/icecast/src/admin.c: make sure the source doesn't
disappear from under us when an admin request is performed.
2004-01-27 02:16 karl
* trunk/avl/avl.c, trunk/icecast/src/logging.c,
trunk/icecast/src/os.h, trunk/icecast/src/stats.c,
trunk/thread/thread.c: minor cleanups, and only have one thread
responding to TERM
2004-01-26 22:42 karl
* trunk/icecast/src/event.c, trunk/icecast/src/yp.c,
trunk/icecast/src/yp.h: fix potential deadlock case at source
stream startup
2004-01-26 21:49 karl
* trunk/icecast/configure.in, trunk/icecast/src/util.c,
trunk/icecast/src/util.h: add localtime_r checks, useful the
threads
2004-01-21 15:19 oddsock
* trunk/icecast/src/source.c: fixed small bug where if using
fallbacks and the main mount was not connected, icecast was not
connecting client to the fallback mount.
2004-01-16 00:43 msmith
* trunk/icecast/src/fserve.c: Fix nasty bug in file serving code,
would probably have made it fail with multiple simultaneous
requests.
2004-01-15 15:37 oddsock
* trunk/icecast/src/source.c: - properly initialize the authorizer
structure, otherwise by default it is enabled - add new element
(listenurl) to the stats for use in things like java player
applets
2004-01-15 04:24 oddsock
* trunk/icecast/src/auth.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/icecast.dsp: fixed some variable definitions
to be ANSI compatable. updated win32 project files with new files
2004-01-15 01:01 msmith
* trunk/icecast/src/Makefile.am, trunk/icecast/src/admin.c,
trunk/icecast/src/auth.c, trunk/icecast/src/auth.h,
trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/compat.h, trunk/icecast/src/connection.c,
trunk/icecast/src/connection.h,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/md5.c,
trunk/icecast/src/md5.h, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/source.h,
trunk/icecast/src/util.c, trunk/icecast/src/util.h: Client
authentication added. Melanie's multilevel fallbacks added
(after major changes).
2004-01-12 01:34 oddsock
* trunk/icecast/Makefile.am: add icecast.spec to the list of
distributed files
2004-01-11 20:03 oddsock
* trunk/icecast/README: fix reference to index document
2004-01-08 14:16 oddsock
* trunk/icecast/conf/icecast.xml.in: commented out mount specific
settings as they are optional and tend to cause confusion
2004-01-07 21:53 oddsock
* trunk/icecast/configure.in: version bump for 2.0.0 release
2004-01-07 21:44 oddsock
* trunk/icecast/win32/icecast2logo2.bmp: new logo :)
2004-01-07 21:26 oddsock
* trunk/icecast/conf/icecast.xml.in: removed yp.icecast.net from
the config..apparently, they are no longer running a YP..
2004-01-07 20:41 oddsock
* trunk/icecast/doc/icecast2.hhp,
trunk/icecast/doc/icecast2_faq.html: more doc updates
2004-01-07 20:36 oddsock
* trunk/icecast/doc/icecast2.hhc, trunk/icecast/doc/icecast2.hhp:
update HTML help files with new index
2004-01-07 20:31 oddsock
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/icecast2_console.dsp: version tag updates
for pending 2.0.0 release
2004-01-07 20:28 oddsock
* trunk/icecast/doc/Makefile.am,
trunk/icecast/doc/icecast2_TOC.html,
trunk/icecast/doc/index.html, trunk/icecast/doc/style.css: Misc
documentation updates
2004-01-06 04:36 oddsock
* trunk/icecast/icecast.spec: config file now goes to /etc...
2004-01-06 03:43 oddsock
* trunk/icecast/icecast.spec: spec file for RPMs
2003-12-30 20:07 oddsock
* trunk/icecast/win32/Makefile.am: add icecast_console project
files to the Makefile.am
2003-12-30 19:39 oddsock
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/StatsTab.cpp: Fixed some peculiarities when
shutting down server...
2003-12-30 15:57 oddsock
* trunk/icecast/doc/icecast2_admin.html: minor documentation fix
2003-12-29 16:35 oddsock
* trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2win.dsw,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2_console.dsp,
trunk/icecast/win32/icecast2_console.dsw: re-add these as
binary, hopefully fixing the line ending problem when doing a
make dist...
2003-12-29 16:34 oddsock
* trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2win.dsw,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2_console.dsp,
trunk/icecast/win32/icecast2_console.dsw: Remove the VC project
files and re-add them as binary (-kb)
2003-12-29 16:28 oddsock
* trunk/icecast/win32/icecast.dsp: fixed VERSION STRING define
2003-12-29 16:18 oddsock
* trunk/icecast/src/main.c: add option to display icecast version
string, and cleaned up usage a bit..
* trunk/icecast/TODO: update the TODO
2003-12-18 17:01 oddsock
* trunk/icecast/AUTHORS, trunk/icecast/README: added Karl to
AUTHORS updated the README with more detailed information...
2003-12-17 23:03 karl
* trunk/icecast/src/slave.c: Fetching the stream list was failing
after the config file was re-read.
2003-12-17 22:54 karl
* trunk/icecast/src/source.c: failure case, keep the source count
in sync with the number of sources running, locking for shutdown
was also affected.
2003-12-13 14:40 oddsock
* trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: update version for win32 build
2003-12-13 14:33 oddsock
* trunk/icecast/README, trunk/icecast/configure.in: version bump
2003-12-12 23:06 oddsock
* trunk/icecast/src/admin.c, trunk/icecast/src/cfgfile.c,
trunk/icecast/src/cfgfile.h, trunk/icecast/src/connection.c,
trunk/icecast/src/slave.c: fixed master-slave relaying... *
slaves now ask for /admin/streamlist.txt which serves a
plaintext version of the source list (this is what it was
expecting to get) * /admin/streamlist still serves XML (which
slave.c wasn't expecting) * fixed a few cases of pointer
invalidation due to possible config re-reading. * slave relay
now uses relay password to get the list of streams to relay
2003-12-04 16:54 oddsock
* trunk/icecast/conf/icecast.xml.in: disable pidfile by default
2003-12-04 16:30 oddsock
* trunk/icecast/README, trunk/icecast/configure.in: version bump
2003-12-04 16:29 oddsock
* trunk/icecast/doc/icecast2.chm,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: Rewrite of the method of
gathering stats from the icecast core engine. The old way was
causing a bunch of instability issues...they have now been fixed
:). Also regenerated the icecast2 docs
2003-12-04 16:25 oddsock
* trunk/icecast/src/stats.c: Remove stats_callback() which is only
used by the win32 UI...The stats gathering done by the UI has
been completely rewritten to eliminate some reported instability.
2003-12-04 16:24 oddsock
* trunk/icecast/src/main.c: Added win32 include for getpid()
2003-12-04 16:23 oddsock
* trunk/icecast/src/logging.h: get rid of the fullpath of the
module that is logged...Stupid VC6....
2003-12-02 01:11 karl
* trunk/icecast/src/source.c: fix segv when fallback or
dumpfilename are not specified
2003-12-01 23:30 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/main.c: Add optional pidfile. Writes process
id of icecast to named file
2003-12-01 17:18 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/source.c:
cleanup bad pointer access after config re-read
2003-11-25 03:04 oddsock
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/icecast.dsp: added VERSION_STRING to defines
for win32 project
2003-11-25 02:51 oddsock
* trunk/icecast/src/global.h: Icecast we are
2003-11-25 02:41 oddsock
* trunk/icecast/src/global.h: Base ICECAST2_VERSION_STRING off
VERSION_STRING which is generated by autoconf..win32 projects
will have to manually define this currently..blah.
2003-11-22 22:23 oddsock
* trunk/icecast/src/global.h: lets make the ICECAST_VERSION_STRING
a bit less of a maintance issue...
2003-11-19 03:57 oddsock
* trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2_console.dsp: Update the project
files to use the ogg vorbis SDK 1.0.1
* trunk/icecast/doc/icecast2.chm: Final build of the docs for beta1
2003-11-18 17:47 vanguardist
* trunk/icecast/doc/icecast2_win32.html: Oddsock gets props for
the docs
2003-11-18 17:43 vanguardist
* trunk/icecast/doc/icecast2_relay.html,
trunk/icecast/doc/icecast2_yp.html: going and going...
2003-11-18 17:36 vanguardist
* trunk/icecast/doc/icecast2_stats.html: Weee~
2003-11-18 17:33 vanguardist
* trunk/icecast/doc/icecast2_admin.html: A few more.
2003-11-18 17:23 vanguardist
* trunk/icecast/doc/icecast2_config_file.html: Config doc luv.
2003-11-18 17:07 vanguardist
* trunk/icecast/doc/icecast2_basicsetup.html: np: Beatles - Helter
Skelter.ogg (aka some cleanups)
2003-11-18 16:55 vanguardist
* trunk/icecast/doc/icecast2_introduction.html: Nothing but the
best!
2003-11-18 16:32 oddsock
* trunk/icecast/doc/icecast2.chm, trunk/icecast/doc/icecast2.hhp:
fix the default window size of the CHM
2003-11-18 02:44 oddsock
* trunk/icecast/doc/style.css: minor style tweaks from Mike...
2003-11-18 00:59 karl
* trunk/icecast/src/cfgfile.c: if relay is for an mp3 stream, then
get inline metadata by default if possible
2003-11-18 00:49 karl
* trunk/icecast/src/cfgfile.c: fix minor leak on config file read
2003-11-18 00:39 karl
* trunk/icecast/autogen.sh, trunk/m4/xiph_net.m4: minor cleanup
2003-11-17 23:08 oddsock
* trunk/icecast/win32/Icecast2winDlg.cpp: Get rid of version in
the window title...
2003-11-17 23:07 brendan
* trunk/icecast/doc/icecast2_stats.html: Slight cosmetic fixes to
the icecast2 docs
2003-11-17 22:55 oddsock
* trunk/icecast/win32/icecast2.iss: version bump
2003-11-17 22:42 oddsock
* trunk/icecast/doc/icecast2.chm: rebuild of compiled html help
2003-11-17 22:41 oddsock
* trunk/icecast/README: (a bit) More appropriate README
2003-11-17 22:40 oddsock
* trunk/icecast/configure.in: version bump
2003-11-17 22:38 oddsock
* trunk/icecast/src/format_mp3.c: added WIN32-ism
2003-11-17 21:36 karl
* trunk/icecast/src/yp.c: type warning cleanup
2003-11-17 02:31 brendan
* trunk/icecast/doc/Makefile.am: Whoops, put manual back in dist.
I would have caught this at home if I could make dist, but HFS+
case-preserving/insensitive FS causes make dist to fail in the
debian directory. Automake sees changelog, thinks it is
ChangeLog, and adds it to make dist automatically, but then make
can't find ChangeLog because it is actually changelog. Grr.
2003-11-17 02:26 brendan
* trunk/icecast/doc/Makefile.am: make install installs manual in
$prefix/share/doc/icecast
2003-11-15 17:30 brendan
* trunk/icecast/doc/Makefile.am: Add docs to dist tarball. Next
step: install docs in the right place.
2003-11-13 03:52 oddsock
* trunk/icecast/NEWS: updated NEWS
2003-11-13 03:50 oddsock
* trunk/icecast/doc/icecast2.chm, trunk/icecast/doc/icecast2.hhc,
trunk/icecast/doc/icecast2.hhp,
trunk/icecast/doc/icecast2_TOC.html,
trunk/icecast/doc/icecast2_admin.html,
trunk/icecast/doc/icecast2_basicsetup.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_relay.html,
trunk/icecast/doc/icecast2_stats.html,
trunk/icecast/doc/icecast2_win32.html,
trunk/icecast/doc/icecast2_yp.html,
trunk/icecast/doc/stats1.jpg, trunk/icecast/doc/style.css,
trunk/icecast/doc/windowtitle.jpg: icecast2 documentation. need
I say more ?
2003-11-11 18:21 karl
* trunk/icecast/src/format_mp3.c: While tracking down the bug
which causes the zombie thread manager while streaming mp3 with
metadata, this patch has turned out to be successful at
maintaining a working icecast for the few users who have
reported the problem The patch essentially removes the use of
the alloca and uses the malloc-type calls instead.
2003-10-31 19:24 oddsock
* trunk/icecast/win32/icecast2.iss: bumped version
* trunk/icecast/win32/Icecast2winDlg.cpp: fixed some display bugs
when showing stats
2003-10-31 19:21 oddsock
* trunk/icecast/src/stats.c: added bypassing of thread_sleep() in
certain cases. this came from KarlH.
2003-10-31 19:16 oddsock
* trunk/icecast/conf/icecast.xml.in: removed unused tags and added
the XIPH directory
2003-10-03 12:20 giles
* trunk/icecast/README: The developer irc channel is back on
freenode.
2003-09-02 03:20 oddsock
* trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/icecast2_console.dsp,
trunk/icecast/win32/icecast2_console.dsw: * clean up of ctrl-Ms
(I hate MSVC sometimes) and bump of version in the setup script
2003-08-04 08:42 keegan
* trunk/icecast/Makefile.am, trunk/icecast/configure.in,
trunk/icecast/debian, trunk/icecast/debian/.cvsignore,
trunk/icecast/debian/Makefile.am,
trunk/icecast/debian/README.Debian,
trunk/icecast/debian/changelog, trunk/icecast/debian/compat,
trunk/icecast/debian/control, trunk/icecast/debian/copyright,
trunk/icecast/debian/icecast2.1,
trunk/icecast/debian/icecast2.default,
trunk/icecast/debian/icecast2.init,
trunk/icecast/debian/icecast2.manpages,
trunk/icecast/debian/icecast2.postinst,
trunk/icecast/debian/icecast2.postrm,
trunk/icecast/debian/icecast2.preinst,
trunk/icecast/debian/rules, trunk/icecast/debian/watch,
trunk/ices/Makefile.am, trunk/ices/configure.in,
trunk/ices/debian, trunk/ices/debian/.cvsignore,
trunk/ices/debian/Makefile.am, trunk/ices/debian/changelog,
trunk/ices/debian/compat, trunk/ices/debian/control,
trunk/ices/debian/copyright, trunk/ices/debian/ices2.1,
trunk/ices/debian/rules, trunk/ices/debian/watch: Added Debian
packaging
2003-07-30 14:46 karl
* trunk/icecast/autogen.sh, trunk/ices/autogen.sh,
trunk/libshout/autogen.sh: fix issues with non-portable echo
flags and re-do the tests for automake version checking. The
enrironment var AUTOMAKE can be used to indicate the first one
to check for
2003-07-27 22:53 karl
* trunk/icecast/src/Makefile.am: We need to state both of these to
get the dependencies and linking working as expected.
2003-07-27 01:13 karl
* trunk/icecast/src/Makefile.am, trunk/m4/xiph_curl.m4: remove
unwanted bits left in from previous commits
2003-07-25 14:29 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/global.h,
trunk/icecast/src/sighandler.c: place the config reread flag in
the global structure
2003-07-24 23:45 karl
* trunk/icecast/src/connection.c, trunk/icecast/src/sighandler.c,
trunk/icecast/src/sighandler.h: avoid hitting the mutex's in the
signal handler, we could block, which is not something we want
to do. Some mutex implementations are signal based.
2003-07-24 16:21 karl
* trunk/icecast/configure.in, trunk/icecast/src/admin.c,
trunk/icecast/src/fserve.c, trunk/icecast/src/main.c,
trunk/icecast/src/source.c, trunk/icecast/src/stats.c,
trunk/icecast/src/yp.c: minor fixes. autoconf/make init clenaup,
missing includes added and compiler warnings removed
2003-07-24 05:38 brendan
* trunk/icecast/Makefile.am: Let aclocal know about m4 directory
2003-07-24 05:32 brendan
* trunk/icecast/configure.in, trunk/icecast/src/main.c: use
_GNU_SOURCE where possible guard unistd.h with CHROOT rather
than HAVE_UNISTD_H, since that's how it's tested in configure.in
2003-07-24 05:24 brendan
* trunk/icecast/src/format_mp3.c, trunk/icecast/src/main.c,
trunk/icecast/src/xslt.c: Mike's #include patch
2003-07-24 02:31 karl
* trunk/icecast/configure.in, trunk/m4/xiph_curl.m4: remove
duplication for compiler flags, and fixup curl detection
2003-07-23 00:27 karl
* trunk/icecast/conf/Makefile.am, trunk/icecast/src/cfgfile.h,
trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/format_mp3.c: minor cleanups
2003-07-21 02:23 karl
* trunk/icecast/Makefile.am, trunk/icecast/acconfig.h,
trunk/icecast/acinclude.m4, trunk/icecast/autogen.sh,
trunk/icecast/configure.in, trunk/icecast/src/Makefile.am,
trunk/icecast/src/config.c, trunk/icecast/src/config.h: Make
icecast use the shared M4 macros. Cleanup the other files.
2003-07-21 01:58 karl
* trunk/icecast/src/admin.c, trunk/icecast/src/client.c,
trunk/icecast/src/configtest.c, trunk/icecast/src/connection.c,
trunk/icecast/src/event.c, trunk/icecast/src/format.c,
trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/geturl.c, trunk/icecast/src/global.c,
trunk/icecast/src/logging.c, trunk/icecast/src/main.c,
trunk/icecast/src/refbuf.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,
trunk/icecast/src/util.c, trunk/icecast/src/xslt.c,
trunk/icecast/src/yp.c: refer to cfgfile.h instead of config.h
for icecast.xml, and use config.h for autoconf
2003-07-21 01:39 karl
* trunk/icecast/src/cfgfile.c, trunk/icecast/src/cfgfile.h: a move
over from config.c config.h. This is so that config.h can be
built by autoconf. config.h is also the name expected by the
convenience libs
2003-07-18 19:54 karl
* trunk/icecast/src/config.c: The xml cleanup occurs after this
anyway, and doing this here can cause bad things to occur when
xslt gets used.
2003-07-16 19:41 karl
* trunk/icecast/src/Makefile.am, trunk/icecast/src/client.c,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/format.c, trunk/icecast/src/format.h,
trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/global.c, trunk/icecast/src/logging.c,
trunk/icecast/src/logging.h, trunk/icecast/src/main.c,
trunk/icecast/src/sighandler.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/stats.h,
trunk/icecast/src/util.c, trunk/icecast/src/xslt.c,
trunk/icecast/src/xslt.h: avoid header namespace clashes
2003-07-11 23:54 karl
* trunk/icecast/src/event.c, trunk/icecast/src/logging.c,
trunk/icecast/src/logging.h: Add log cycling on HUP signals.
Currently reopens log files in append mode so allows for
continuing the log, or cycling just one log. log filename
changes work as well.
2003-07-11 19:03 karl
* trunk/icecast/src/source.c: don't terminate stream when debugging
2003-07-08 14:11 oddsock
* trunk/icecast/src/source.c: unused variable
* trunk/icecast/src/yp.c, trunk/icecast/src/yp.h: don't overwrite
info in one yp with info from another :)
2003-07-07 22:04 oddsock
* trunk/icecast/src/format_mp3.c: cleaned a bit
2003-07-07 22:02 oddsock
* trunk/icecast/src/format_mp3.c: win32 goodies
2003-07-06 15:27 brendan
* trunk/icecast/src/format.c, trunk/icecast/src/format_mp3.c: Move
MP3 headers back into format_mp3.c per Mike's desire. I removed
icy- support from the generic send headers function, as it is my
understanding that only MP3 sources use icy headers. PLEASE
correct me if I am wrong. I also added code in the mp3 function
to convert ice-audio-info bitrate to an icy-br header.
ice-audio-info is for YP, icy-br for clients. Perhaps we should
send both to clients though?
2003-07-05 06:36 brendan
* trunk/icecast/src/connection.c: Write a newline after the m3u
entry (patch by Paul Bryan).
2003-07-03 01:39 brendan
* trunk/icecast/src/format.c: Convert ice headers to icy headers
for MP3 streams. TODO: rewrite ice-audio-info bitrate tag to
icy-br.
2003-07-03 01:36 brendan
* trunk/icecast/src/format.c: When relaying MP3 we reported the
source metainterval as well as our own, causing stuttering in
some clients. Thank goodness icecast uses an odd metainterval,
or this bug would never have been discoverd :)
2003-07-02 19:47 brendan
* trunk/icecast/TODO: updates
2003-06-29 18:12 karl
* trunk/icecast/src/yp.c: infinite loop/memory leak fix for
private streams when yp is enabled
2003-06-26 13:33 oddsock
* trunk/icecast/src/yp.c, trunk/icecast/src/yp.h: - add_yp_info
moved into yp.c - all yp adds/touches are now done within a
single thread. This should eliminate any "thread growth" issues
and make things behave much nicer when yp problems arise. We
should eventually change the add/touches to non-blocking
sockets, which will be needed for large numbers of streams doing
adds/touches.
* trunk/icecast/src/main.c: - added startup of yp add/touch thread
2003-06-26 13:32 oddsock
* trunk/icecast/src/stats.c: - fixed small memory leak
* trunk/icecast/src/source.c, trunk/icecast/src/source.h: - moved
add_yp_info into yp.c - most of the yp processing now moved into
the yp add/touch thread - use ice/icy-public rather than
ice/icy-private to coorespond to libshout and general convention
- memory leak fixed with audio-info
2003-06-26 13:31 oddsock
* trunk/icecast/src/format_vorbis.c: - force touches when vorbis
metadata changes
* trunk/icecast/src/admin.c: - force touches when mp3 metadata is
updated via admin interface
2003-06-20 18:50 karl
* trunk/icecast/src/connection.c: handle error returned from
listening sockets, can cause busy looping
2003-06-20 04:01 brendan
* trunk/icecast/conf/Makefile.am,
trunk/icecast/conf/icecast.xml.in: Whoops! make install could
overwrite an existing icecast.xml. Install icecast.xml.dist in
doc Install as $(sysconfdir)/icecast.xml only if that file
doesn't already exist.
2003-06-17 21:10 brendan
* trunk/icecast/Makefile.am, trunk/icecast/NEWS,
trunk/icecast/admin/Makefile.am, trunk/icecast/conf/Makefile.am,
trunk/icecast/conf/icecast.xml,
trunk/icecast/conf/icecast.xml.in,
trunk/icecast/web/Makefile.am: Fix critical TODO item 1 (make
install) ATTN Mike! make install now installs the xsl files in
pkgdatadir ($prefix/share/icecast) web and admin directories,
and builds icecast.xml accordingly. icecast.xml is now installed
in $sysconfdir/etc, and IMHO icecast should attempt to find a
config file there, and only demand one on the command line if it
can't.
2003-06-17 21:07 brendan
* trunk/icecast/News: One half of rename to NEWS
2003-06-16 22:33 brendan
* trunk/icecast/TODO: This critical item should be resolved.
2003-06-06 00:05 karl
* trunk/icecast/configure.in, trunk/ices/configure.in,
trunk/libshout/configure.in, trunk/net/sock.c, trunk/net/sock.h:
Another net change, making it more bullet-proof, before could
silently miss data. so now we allocate enough space for the
write to succeed fully.
2003-06-05 17:55 brendan
* trunk/icecast/configure.in: coordinate IPv6 change with net
module
2003-06-05 04:15 oddsock
* trunk/icecast/src/connection.c: fixed check for regular file
type in win32-specific code
2003-06-04 01:40 brendan
* trunk/icecast/conf/icecast.xml: spaces-only indentation for the
love of $
2003-05-28 15:14 brendan
* trunk/icecast/admin/.cvsignore: *** empty log message ***
2003-05-28 15:04 brendan
* trunk/icecast/configure.in, trunk/icecast/src/main.c,
trunk/icecast/src/source.c: Fix curl version test. YP is enabled
by default but automatically turned off if the curl test fails
(unless --enable-yp is explicitly passed to configure, in which
case configure will fail if the curl test fails).
2003-05-28 13:43 msmith
* trunk/icecast/src/admin.c: Fix lots of warnings in new admin
stuff - primarily wrong types in printf format strings.
2003-05-28 03:45 brendan
* trunk/icecast/configure.in: Check whether CURLOPT_NOSIGNAL is
available, or disable YP (hopefully).
2003-05-28 02:59 brendan
* trunk/icecast/.cvsignore: More autoconf junk
2003-05-15 23:19 oddsock
* trunk/icecast/src/admin.c, trunk/icecast/src/config.c,
trunk/icecast/src/connection.c: some win32-isms and a bad free
that valgrind yelled at me about
2003-05-15 21:05 oddsock
* trunk/icecast/conf/icecast.xml: new config param <adminroot>
added yp.icecast.net as another possible yp directory
2003-05-15 21:04 oddsock
* trunk/icecast/Makefile.am, trunk/icecast/configure.in: added new
admin directory
2003-05-15 21:03 oddsock
* trunk/icecast/src/admin.c, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/source.c:
infrastructure for new web-based admin interface new config
option <adminroot> restructured code a bit in admin.c for a bit
better extendability
2003-05-15 21:01 oddsock
* trunk/icecast/admin, trunk/icecast/admin/Makefile.am,
trunk/icecast/admin/listclients.xsl,
trunk/icecast/admin/listmounts.xsl,
trunk/icecast/admin/moveclients.xsl,
trunk/icecast/admin/response.xsl, trunk/icecast/admin/stats.xsl:
new admin XSL templates for web interface
2003-05-04 01:32 msmith
* trunk/icecast/TODO: Oops. Commit updated version of TODO
2003-04-25 08:38 msmith
* trunk/icecast/conf/icecast.xml: Change the <mount> section
slightly and add a comment to avoid confusing users.
2003-04-23 12:44 msmith
* trunk/icecast/News, trunk/icecast/conf/icecast.xml,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/slave.c: Implementation of aliases contributed
by Paul Donohue <icecast@TopQuark.net>
2003-04-23 12:28 msmith
* trunk/icecast/TODO: And another
2003-04-23 12:20 msmith
* trunk/icecast/TODO: Add a short list of the critical things to
do for 2.0 to be released.
2003-04-22 02:35 karl
* trunk/icecast/configure.in: add missing check for inet_aton,
sock.h wants this.
2003-04-21 17:52 karl
* trunk/icecast/acinclude.m4, trunk/icecast/configure.in: autoconf
updates. Now builds on OpenBSD
2003-04-21 15:00 karl
* trunk/icecast/win32/Makefile.am: icecast.xml in this
subdirectory is now removed. This should now make the icecast
tarball build again
2003-04-18 14:59 msmith
* trunk/icecast/src/connection.c: Only consider a path a candidate
for file-serving if it exists AND is a normal file (not a
directory, etc.)
2003-04-17 03:37 oddsock
* trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/Icecast2winDlg.h,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast.xml,
trunk/icecast/win32/icecast2.iss: removal of some errant
newlines update of icecast.dsp for console build update of .iss
setup build file removed icecast.xml from this dir (should never
have been here)
2003-04-17 03:29 oddsock
* trunk/icecast/win32/icecast2_console.dsp,
trunk/icecast/win32/icecast2_console.dsw: new win32 project
files for iceast2 console mode
2003-04-17 03:23 oddsock
* trunk/icecast/src/main.c, trunk/icecast/src/source.c: printf to
stdout not valid with our win32 binary, so lets now use
something that will work on win32. note that these should only
be used up to the point at which logging is started, then
everything should go there. also added a new stat to represent
what is currently being sent to the yp server as "what's playing"
2003-04-17 01:03 karl
* trunk/icecast/src/Makefile.am: admin.h is needed for the tarball
or else it will fail to compile icecast
2003-04-11 03:14 oddsock
* trunk/icecast/conf/icecast.xml: new parameter for the
icecast.xml config file (yp timeout interval)
2003-04-11 03:00 oddsock
* trunk/icecast/src/source.c, trunk/icecast/src/util.c,
trunk/icecast/src/yp.c: - fixed alot of yp logic. timeouts now
work properly so the tolerance of the unavailability of yp
servers is much much better now. - new icecast config option
<yp-url-timeout> to specify the timeout - url encoding is now
fixed so that the yp data is formatted much nicer (and is
correct :)) - added url encoding for some fields that were not
url-encoded - modified util_dict_urlencode() to not url-encode
the key (still does the value) - new curl option
(CURLOPT_NOSIGNAL) which prevents curl from using signals when
timeouts are hit. This new option needs curl 7.10 at least.
2003-04-10 14:28 msmith
* trunk/icecast/src/util.c: What was I on when I wrote this?
oddsock pointed out that util_url_escape() was chronically broken
2003-04-03 12:41 msmith
* trunk/icecast/TODO: Commit my TODO file.
2003-03-31 12:54 msmith
* trunk/icecast/src/admin.c, trunk/icecast/src/source.c: Implement
killsource admin command, to kill sources. Doesn't always do
much, ices (as an example) will auto-reconnect.
2003-03-30 13:52 msmith
* trunk/icecast/src/admin.c, trunk/icecast/src/refbuf.c,
trunk/icecast/src/source.c, trunk/icecast/src/source.h: Remove
locking from refbuf: we used a single global lock for all of
them, which caused significant lock contention with many
sources. Further, a single refbuf is never used by more than one
source (and hence one thread), so the locking was unneeded. Fix
a nasty bug in source.c:_compare_clients() - was casting a void
pointer to the wrong type, and hence all the tree-maintaince
comparisons were totally wrong (but due to the exact nature of
the bug this wasn't causing any active problems until...) Add
another admin command to kill a client - remove it using an id.
Note that many clients will do auto-reconnect, so this may not
be sufficient on its own, we might need a ban (possibly
temporary) function.
2003-03-27 17:10 brendan
* trunk/icecast/configure.in, trunk/icecast/src/Makefile.am,
trunk/icecast/src/connection.c, trunk/icecast/src/geturl.c,
trunk/icecast/src/geturl.h, trunk/icecast/src/global.c,
trunk/icecast/src/main.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/yp.c,
trunk/icecast/src/yp.h: First crack at making YP/curl optional.
2003-03-19 15:58 oddsock
* trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: update project file with new
files added to icecast module updated version in install script
2003-03-19 07:59 msmith
* trunk/icecast/src/source.c: Fix ordering of some calls in source
shutdown, silly bug. Remove wrong comment.
2003-03-19 07:55 msmith
* trunk/icecast/src/source.c: Fix lack of null terminator in audio
info/stats stuff.
2003-03-18 01:40 karl
* trunk/icecast/configure.in, trunk/ices/configure.in,
trunk/libshout/configure.in: we need to define an API level we
want for certain systems like solaris
2003-03-17 16:17 brendan
* trunk/icecast/configure.in: Announce version required
2003-03-16 00:33 brendan
* trunk/icecast/README: #icecast at openprojects is defunct.
2003-03-15 02:10 msmith
* trunk/avl/avl.c, trunk/avl/avl.h, trunk/avl/test.c,
trunk/httpp/httpp.c, trunk/httpp/httpp.h, trunk/httpp/test.c,
trunk/icecast/src/admin.c, trunk/icecast/src/client.c,
trunk/icecast/src/client.h, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/configtest.c,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/event.c, trunk/icecast/src/format.c,
trunk/icecast/src/format.h, trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/global.c, trunk/icecast/src/global.h,
trunk/icecast/src/logging.c, trunk/icecast/src/main.c,
trunk/icecast/src/refbuf.c, trunk/icecast/src/refbuf.h,
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, trunk/icecast/src/stats.h,
trunk/icecast/src/util.c, trunk/icecast/src/xslt.c,
trunk/icecast/src/yp.h, trunk/log/log.c, trunk/log/test.c,
trunk/net/sock.c, trunk/net/test_resolver.c,
trunk/thread/thread.c, trunk/thread/thread.h,
trunk/timing/timing.c: Brendan was getting pissed off about
inconsistent indentation styles. Convert all tabs to 4 spaces.
All code must now use 4 space indents.
2003-03-14 07:59 msmith
* trunk/icecast/src/admin.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: Bugfix: source shutdown did things
in the wrong order, could lead to clients ending up connecting
to a source which didn't exist. Add 'moveclients' admin command
to move all clients from one source to another (without shutting
the old source down)
2003-03-14 00:45 karl
* trunk/icecast/acinclude.m4, trunk/m4/acx_pthread.m4: separate
the check for pthread_rwlock_t, it will soon be an optional
2003-03-12 05:40 brendan
* trunk/icecast/src/connection.c: Typo (no sleeping between
select()s waiting for connections)
2003-03-10 22:20 msmith
* trunk/icecast/src/admin.c, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/connection.c: Fix
relay stream listing. Remove seperate relay password, there's no
need for it.
2003-03-09 14:12 msmith
* trunk/icecast/src/admin.c: Listing of current mountpoints in
admin interface.
2003-03-09 11:27 msmith
* trunk/icecast/News, trunk/icecast/conf/icecast.xml,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/connection.c, trunk/icecast/src/global.c,
trunk/icecast/src/global.h, trunk/icecast/src/main.c: Support
listening on multiple sockets.
2003-03-08 05:38 msmith
* trunk/icecast/src/connection.c: Check the right variable for
password in icy logins
2003-03-08 05:02 msmith
* trunk/icecast/src/connection.c: create /icy_0 (and incrementing
numbers) for incoming icy protocol connections if the /
mountpoint is taken
2003-03-08 04:57 msmith
* trunk/httpp/httpp.c, trunk/httpp/httpp.h, trunk/icecast/News,
trunk/icecast/src/connection.c: Added support for shoutcast
login protocol (ewww...)
2003-03-07 22:39 karl
* trunk/icecast/configure.in, trunk/ices/configure.in,
trunk/libshout/configure.in: Add XIPH_CFLAGS which will be used
to pass compiler flags which you don't want to get clobbered by
things like make CFLAGS='....' The typical flags you don't want
clobbered are ones like -pthread
2003-03-07 14:57 msmith
* trunk/icecast/News, trunk/icecast/src/admin.c, trunk/net/sock.c,
trunk/net/sock.h: Implement listing of all currently connected
clients on a mountpoint
2003-03-06 14:52 msmith
* trunk/icecast/src/slave.c: Send a user-agent header on normal
relay requests as well.
2003-03-06 14:46 msmith
* trunk/icecast/src/connection.c: Check admin password against the
correct username
2003-03-06 14:17 msmith
* trunk/icecast/src/Makefile.am, trunk/icecast/src/admin.c,
trunk/icecast/src/admin.h, trunk/icecast/src/connection.c,
trunk/icecast/src/connection.h, trunk/icecast/src/source.c,
trunk/icecast/src/util.c, trunk/icecast/src/util.h: Split admin
stuff out into a seperate file, add various utility functions
there. rename util_url_escape to util_url_unescape, and write a
util_escape function that actually DOES escape things. Fix all
the callers of the function to call the correct one of these two.
2003-03-05 13:03 msmith
* trunk/icecast/ChangeLog, trunk/icecast/News, trunk/icecast/TODO,
trunk/icecast/src/Makefile.am, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/configtest.c,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/event.c, trunk/icecast/src/event.h,
trunk/icecast/src/fserve.c, trunk/icecast/src/main.c,
trunk/icecast/src/sighandler.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/util.c,
trunk/icecast/src/yp.c: Allow rereading config files. Lots of
new locking happening so that it's safe to have the config file
disappear under the rest of the program Does NOT affect
currently-running sources at the moment
2003-03-04 08:31 msmith
* trunk/icecast/conf/icecast.xml: Comment out dump file, people
don't want that on by default (I'm not admitting to just having
filled up /)
2003-03-03 13:09 msmith
* trunk/icecast/src/refbuf.c: doh! This one compiles.
2003-03-03 13:04 msmith
* trunk/icecast/src/refbuf.c: Fix buffer-queue length handling
(was missing from refbuf_queue_add, which it used as well as
refbuf_queue_insert).
2003-03-02 11:01 msmith
* trunk/icecast/ChangeLog: Add a changelog file for the last ~2
months. Other committers: any new features, and any major
bugfixes, should be added in here, please. Try and keep it up to
date. Minor changes (particularly those not visible to the user)
and so on don't generally need an entry here - this should be a
usable summary of new stuff for the non-developer.
2003-03-02 10:36 msmith
* trunk/icecast/src/config.c, trunk/icecast/src/connection.c,
trunk/icecast/src/source.c: Fix various minor bugs in
per-mountpoint configs.
2003-03-02 10:18 msmith
* trunk/icecast/conf/icecast.xml: Add another comment suggested by
a user.
2003-03-02 10:13 msmith
* trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/connection.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h, trunk/icecast/src/util.c: More
features: -- per mountpoint listener maxima -- static
configuration of mountpoint fallbacks -- stream dumping (write
incoming stream to disk) Fixed some warnings that other people
introduced.
2003-02-28 20:16 brendan
* trunk/icecast/configure.in: Typo
2003-02-27 03:01 oddsock
* trunk/icecast/src/source.c: whoops...stats can't have spaces in
them, since XML can't have spaces in the tags also, handle case
where a client sends a bad ice-audio-info string (variable but
no value)
2003-02-26 23:52 oddsock
* trunk/icecast/src/source.c, trunk/icecast/src/source.h,
trunk/icecast/src/util.c, trunk/icecast/src/util.h,
trunk/icecast/src/yp.c, trunk/icecast/src/yp.h: added parsing of
new icy-audio-info header which will be used to communicate
things like samplerate/quality/number of channels to icecast2.
This info will be then forwarded to the yp servers for better
stream info. also factored out some logic in source_main into
common functions added a few new routines into util.c (taken
from Brendan's updates to libshout)
2003-02-25 09:40 msmith
* trunk/icecast/src/format_mp3.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/util.c: mp3
metadata relaying now works (lots of bugs fixed)
2003-02-24 14:56 msmith
* trunk/icecast/src/refbuf.c: Commit fix for segfault in buffer
length handling code.
2003-02-24 13:37 msmith
* trunk/icecast/TODO, trunk/icecast/conf/icecast.xml,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_mp3.h,
trunk/icecast/src/refbuf.c, trunk/icecast/src/refbuf.h,
trunk/icecast/src/slave.c, trunk/icecast/src/source.c: Max queue
length for clients is now a) based on total bytes in queue, not
total number of buffers in queue b) configurable (defaults to
100 kB) mp3 metadata relaying (inline). Untested.
2003-02-20 22:18 msmith
* trunk/icecast/src/connection.c: Oops. Very broken password
checking, fix from Karl Heyes.
2003-02-17 13:01 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: Fix previous changes to source
creation - misunderstood requirements for unlocking rwlocks.
Move more checks and some other logic into source.c
2003-02-17 12:05 msmith
* trunk/icecast/src/format.c, trunk/icecast/src/format.h,
trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_mp3.h:
Commit some other work so it compiles again (incomplete mp3
metadata relaying)
2003-02-17 11:56 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c: Fix a serious bug with source
creation in relays when local-mount != mount, and fix a series
of locking bugs in source creation.
2003-02-15 01:13 msmith
* trunk/icecast/configure.in: check for poll(2) in configure.
2003-02-14 13:39 msmith
* trunk/icecast/src/format_mp3.c: Fix mp3 streaming for clients
not using metadata
2003-02-14 13:17 msmith
* trunk/icecast/src/format.c: Oops. Pull a header print outside
the loop so the Server: header is only output once, not many
times.
2003-02-14 11:44 msmith
* trunk/icecast/src/client.c: Fix bad log entries from relaying.
2003-02-14 10:31 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/format.h: Fix incorrect use of enum that was
leading to crashes on source connect for unknown mimetype.
2003-02-13 11:29 msmith
* trunk/icecast/src/connection.c, trunk/net/sock.c,
trunk/net/sock.h: Better IPv6 support. Hopefully logging will
work correctly now. However, some things still won't work,
notably relaying (the relay can be ipv6, the server being
relayed _from_ may not be). I'll fix that some time soon.
2003-02-12 22:50 msmith
* trunk/icecast/src/connection.c: Increase buffer size for IPs so
that logging works better for v6 clients.
2003-02-12 11:04 msmith
* trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/slave.c: Allow configuring local mountpoint
seperately from remote mountpoint
2003-02-11 14:23 msmith
* trunk/icecast/TODO, trunk/icecast/conf/icecast.xml,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/global.h, trunk/icecast/src/source.h: Per
mountpoint usernames, passwords, and some infrastructure for
other per-mountpoint configuration (some of these are given as
examples in the config file, but they aren't yet used).
2003-02-11 12:18 msmith
* trunk/icecast/src/format.c, trunk/icecast/src/fserve.c: Now that
it's been completely officially assigned, use application/ogg
instead of application/x-ogg
2003-02-07 14:00 msmith
* trunk/icecast/src/slave.c: Sigh. And another.
2003-02-07 13:56 msmith
* trunk/icecast/src/connection.c: Grumble. Silly gcc.
2003-02-07 12:26 msmith
* trunk/icecast/src/config.c: Free new config variables on
shutdown (forgot to add this before)
2003-02-07 11:56 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/slave.c: Add
format detection workaround for icecast 1.x, which is buggy and
doesn't send a content-type header.
2003-02-07 11:46 msmith
* trunk/icecast/src/slave.c: Fix relaying. Oops.
2003-02-07 10:53 msmith
* trunk/icecast/conf/icecast.xml, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/slave.c: Rearrange
some relaying code. Add ability to configure individual relays
as well (i.e. single stream, rather than all the streams from a
server).
2003-02-06 13:10 msmith
* trunk/icecast/TODO, trunk/icecast/conf/icecast.xml,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/configtest.c, trunk/icecast/src/connection.c,
trunk/icecast/src/fserve.c, trunk/icecast/src/geturl.c,
trunk/icecast/src/geturl.h, trunk/icecast/src/source.c,
trunk/icecast/src/source.h, trunk/icecast/src/stats.c,
trunk/icecast/src/yp.c, trunk/icecast/src/yp.h,
trunk/net/sock.c, trunk/net/sock.h: Lots of fixes for screwy
code formatting, plus: make streams public by default, send
ice-private: 1 to make them private. However, default config
file has yp servers commented out. A little fix for compilation
on some solaris systems Redo some config file stuff: now all the
passwords are inside an element <authentication>, (though for
now they're also accepted in the old location), and added admin
username and password. Move some of the admin activities over to
using the admin passwords (admin action that affect a mountpoint
use the source password) Fill in some (but not yet all, maybe
i'll do that later) of the infrastructure for per-mountpoint
passwords. Fix lots of headers/code so that it works
properly/portably on non-win32 systems.
2003-02-05 14:31 oddsock
* trunk/icecast/win32/icecast2.iss: forgot to add libcurl to the
setup building script
2003-02-05 02:04 oddsock
* trunk/icecast/src/yp.c: if there is an error on touching, then
reset the sid which will force another add
2003-02-02 20:43 oddsock
* trunk/icecast/configure.in: added check for HAVE_SYS_UIO_H
2003-02-02 16:48 oddsock
* trunk/icecast/src/geturl.c, trunk/icecast/src/geturl.h,
trunk/icecast/src/source.c, trunk/icecast/src/yp.c,
trunk/icecast/src/yp.h: style changes
2003-02-02 14:35 oddsock
* trunk/icecast/conf/icecast.xml: added new entry for yp server
2003-02-02 14:33 oddsock
* trunk/icecast/src/connection.c, trunk/icecast/src/slave.c: added
references to geturl.h
* trunk/icecast/src/source.c, trunk/icecast/src/source.h: many
modifications in order to support yp listing..the source
structure now has additional fields, which are only used by the
yp listing routines
2003-02-02 14:32 oddsock
* trunk/icecast/src/logging.h: added reference to log.h, WIN32
needed it otherwise it would fail on finding prototypes
2003-02-02 14:31 oddsock
* trunk/icecast/src/global.c: added geturl.h reference
2003-02-02 14:26 oddsock
* trunk/icecast/src/main.c: added initialization routines for
curl, and also added the '-b' as a command line param...this
will put icecast2 in the background
2003-02-02 14:25 oddsock
* trunk/icecast/src/stats.c, trunk/icecast/src/stats.h: added
function for retrieving specific stat values (for use by yp
routines)
2003-02-02 14:24 oddsock
* trunk/icecast/src/config.c, trunk/icecast/src/config.h: new
configuration entries for yp listing
* trunk/icecast/src/Makefile.am, trunk/icecast/src/geturl.c,
trunk/icecast/src/geturl.h, trunk/icecast/src/yp.c,
trunk/icecast/src/yp.h: added new files for yp listing, and also
added refereneces to them in Makefile.am
2003-02-02 14:22 oddsock
* trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Makefile.am,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: added references to libcurl
(needed for yp-listing in icecast2)
2003-02-02 14:21 oddsock
* trunk/icecast/acinclude.m4, trunk/icecast/configure.in: added
libcurl to dependencies, needed for yp-listing within icecast2
2003-01-23 11:12 msmith
* trunk/icecast/src/connection.c: Fix segfault if current source
didn't exist on fallback mount request.
2003-01-18 12:30 msmith
* trunk/icecast/src/format.c, trunk/icecast/src/format_mp3.c: Fix
for a couple of nasty bugs that could result in clients being
incorrectly dropped under some circumstances. Thanks to Ricardo
Galli for finding this.
2003-01-18 07:39 msmith
* trunk/icecast/src/connection.c: And some more message fixes
(this and the previous from alet@librelogiciel.com (Jerome Alet)
2003-01-18 07:38 msmith
* trunk/icecast/src/connection.c: Fix a message that was talking
about the wrong path
2003-01-18 07:08 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/fserve.c,
trunk/net/sock.c, trunk/net/sock.h: Set TCP_NODELAY on sockets
for streams and fileserving. Adapted from a patch sent by
Richard Galli
2003-01-18 06:54 msmith
* trunk/icecast/src/source.c: Small memory leak fixed (patch from
Ricardo Galli <gallir@uib.es>)
2003-01-16 08:07 brendan
* trunk/icecast/src/configtest.c: I wanted to see this variable
2003-01-15 05:58 brendan
* trunk/icecast/acconfig.h, trunk/icecast/configure.in: OS X
10.2.3 doesn't define socklen_t. This version is compatible with
autoconf 2.13. I believe it should also work in 2.5x, although
the semantics of AC_CHECK_TYPE have changed.
2003-01-15 05:38 brendan
* trunk/icecast/doc/.cvsignore, trunk/icecast/web/.cvsignore,
trunk/icecast/win32/.cvsignore,
trunk/icecast/win32/res/.cvsignore: Missing .cvsignores
2003-01-15 05:36 brendan
* trunk/icecast/.cvsignore: automake/libtool generated files
2003-01-15 05:34 brendan
* trunk/icecast/configure.in: autoheader always requires the third
argument to AC_DEFINE
2003-01-15 05:33 brendan
* trunk/icecast/.cvsignore: config.h.in is generated by autoheader
2003-01-13 10:48 msmith
* trunk/icecast/configure.in, trunk/icecast/src/Makefile.am: Patch
for freebsd to set gcc options for pthreads correctly, from
"Nigel Weeks" <nigel@e-easy.com.au>
2003-01-01 21:21 oddsock
* trunk/icecast/src/source.c: fixed SEGV when streaming with mp3
with metadata
2003-01-01 07:31 msmith
* trunk/icecast/src/format_mp3.c: indentation fixes, and a small
fix for tracking bytes sent.
2002-12-31 20:15 oddsock
* trunk/icecast/src/format.c, trunk/icecast/src/format_mp3.c:
those darn EOL chars
2002-12-31 20:07 oddsock
* trunk/icecast/src/format.c, trunk/icecast/src/format_mp3.c,
trunk/icecast/win32/icecast2.iss: win32 compilation fixes
2002-12-31 19:48 oddsock
* trunk/icecast/src/format_mp3.c: fixed mp3 metadata, now tested
and working.
2002-12-31 07:49 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/source.c: New
year's bonus feature: configurable fallbacks, now working.
2002-12-31 06:28 msmith
* trunk/httpp/httpp.c, trunk/httpp/httpp.h,
trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/connection.c, trunk/icecast/src/util.c,
trunk/icecast/src/util.h: mp3 metadata complete. Still untested.
2002-12-30 15:42 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/slave.c:
Better file-serving, rationalisation of some paths
2002-12-30 15:19 msmith
* trunk/icecast/src/format_mp3.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: mountpoint fallbacks. untested, and
no interface available to configure them.
2002-12-30 11:27 msmith
* trunk/icecast/src/format_mp3.c: Fix some minor errors.
2002-12-30 11:22 msmith
* trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_mp3.h:
More mp3 metadata work. Untested but more or less complete. No
way to actually set the metadata yet.
2002-12-30 07:55 msmith
* 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_mp3.h,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/global.c,
trunk/icecast/src/slave.c, trunk/icecast/src/source.c,
trunk/icecast/src/source.h: mp3 metadata work (incomplete)
2002-12-30 01:59 msmith
* trunk/icecast/src/connection.c: Fix c++-ism that gcc didn't
think to warn me about
2002-12-29 15:46 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/fserve.c, trunk/icecast/src/slave.c,
trunk/icecast/src/stats.c: Fix up types after thread type rename
earlier.
2002-12-29 14:06 msmith
* trunk/icecast/src/config.c, trunk/icecast/src/main.c,
trunk/icecast/src/slave.c, trunk/icecast/src/stats.c,
trunk/icecast/src/xslt.c: Plug several small memory leak, and
one huge one in the xslt output code
2002-12-29 09:21 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/slave.c,
trunk/icecast/src/xslt.c: Minor incompatible change to relaying,
to match actual protocol.
2002-12-29 08:10 msmith
* 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_vorbis.c, trunk/icecast/src/main.c,
trunk/icecast/src/source.c: Add infrastructure for better/more
flexible format support. Will be needed for mp3 metadata, for
example.
2002-12-01 02:10 msmith
* trunk/icecast/src/os.h: Fix EOLs
2002-11-23 15:55 oddsock
* trunk/icecast/src/os.h, trunk/net/sock.c, trunk/net/sock.h:
win32 port updates to recent changes
2002-11-23 15:54 oddsock
* trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/TRAYNOT.h, trunk/icecast/win32/Traynot.cpp,
trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss: added missing win32 files
fixed UNIX EOL on VC6 project files
2002-11-22 13:13 msmith
* trunk/icecast/configure.in, trunk/net/sock.h: Fix a compile
error.
2002-11-22 13:00 msmith
* trunk/icecast/TODO, trunk/icecast/src/connection.c,
trunk/icecast/src/fserve.c, trunk/icecast/src/global.c,
trunk/icecast/src/sighandler.c, trunk/icecast/src/util.c,
trunk/thread/thread.c: Lots of bugfixes contributed by Karl
Heyes.
2002-10-10 08:50 msmith
* trunk/icecast/src/connection.c: Allow icelogin to coexist with
http login. icelogin is still deprecated, and now a warning is
issued.
2002-10-06 09:57 msmith
* trunk/icecast/src/source.c: Previous bugfix was incorrect, and
made the problem worse, since it ensured it would be triggered
in certain cases, instead of merely making it dependant on
previous values written to the variable in those cases. Fixes
source disconnect on some (but very few) ogg bitstreams (the
vast majority of my files play fine)
2002-10-03 14:07 msmith
* trunk/icecast/src/source.c: Fix for possible obscure bug leading
to source disconnects.
2002-10-01 16:26 msmith
* trunk/icecast/README: README written.
2002-09-24 08:16 msmith
* trunk/icecast/Makefile.am, trunk/icecast/TODO,
trunk/icecast/configure.in, trunk/icecast/doc/Makefile.am,
trunk/icecast/src/Makefile.am, trunk/icecast/web/Makefile.am,
trunk/icecast/win32/Makefile.am,
trunk/icecast/win32/res/Makefile.am: build updates.
2002-08-28 20:37 oddsock
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/Icecast2win.cpp,
trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2win.h,
trunk/icecast/win32/Icecast2win.rc,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/Icecast2winDlg.h,
trunk/icecast/win32/StdAfx.h, trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast.xml,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/resource.h: removed tab for editing
configuration file, opted for a much simpler approach (spwan a
notepad session) fixed the "Make this stat the window title"
logic Added menu to the dialog
2002-08-28 13:50 msmith
* trunk/icecast/src/fserve.c: Fix an fserv crash bug if startup
failed, and fix an fserv-didn't-actually-
work-at-all-in-most-circumstances bug.
2002-08-28 13:00 msmith
* trunk/icecast/src/Makefile.am: Fix XSLT compiler flags. patch
from Thomas Vander Stichele
2002-08-26 12:40 oddsock
* trunk/icecast/doc, trunk/icecast/doc/Index.hhk,
trunk/icecast/doc/icecast2.chm, trunk/icecast/doc/icecast2.hhc,
trunk/icecast/doc/icecast2.hhp,
trunk/icecast/doc/index_win32.html,
trunk/icecast/doc/stats1.jpg, trunk/icecast/doc/style.css,
trunk/icecast/doc/win32_section1.html,
trunk/icecast/doc/win32_section2.html,
trunk/icecast/doc/win32_section3.html,
trunk/icecast/doc/windowtitle.jpg: initial documentation for the
win32 port...Using HTML Help to build the win32 help file
2002-08-25 06:14 msmith
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/Icecast2win.cpp,
trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2win.rc,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/Icecast2winDlg.h,
trunk/icecast/win32/StdAfx.h, trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/resource.h: icecast2/win32 updates from
oddsock.
2002-08-25 06:12 msmith
* trunk/icecast/src/main.c: Move fserve_initialize() to later so
that chroot() works right.
2002-08-18 13:38 msmith
* trunk/icecast/src/fserve.c: Build an extension->mimetype mapping
table from /etc/mime.types, use this for sending content-type
when file serving.
2002-08-18 09:38 msmith
* trunk/icecast/src/fserve.c: Use select() if poll() isn't
available in fserve.
2002-08-18 08:49 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/fserve.h, trunk/icecast/src/main.c,
trunk/icecast/src/util.c, trunk/icecast/src/util.h: Fileserving
that might actually work for > 1 user. cleanups for the base64
decoder.
2002-08-18 05:06 msmith
* trunk/icecast/conf/icecast.xml, trunk/icecast/src/Makefile.am,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/connection.c, trunk/icecast/src/fserve.c,
trunk/icecast/src/fserve.h, trunk/icecast/src/main.c: File
serving, from the webroot.
2002-08-17 08:32 msmith
* trunk/icecast/src/connection.c: Use relay password (fallback to
using source password if no relay-password is set)
2002-08-17 06:25 msmith
* trunk/icecast/src/slave.c: Fall back to using the
source-password if no master-password is set.
2002-08-17 04:48 msmith
* trunk/icecast/src/util.c: Fix a null terminator so that relaying
can work again
2002-08-17 04:35 msmith
* trunk/icecast/src/source.c: Minor fix I forgot to commit
yesterday for source data length accounting.
2002-08-16 15:28 msmith
* trunk/icecast/src/client.c, trunk/icecast/src/connection.c:
Minor fixes for logging response codes correctly (hopefully)
2002-08-16 15:04 msmith
* trunk/icecast/conf/icecast.xml: Typo.
2002-08-16 14:55 msmith
* trunk/icecast/conf/icecast.xml, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/connection.c,
trunk/icecast/src/slave.c: Fix relaying to work with new auth
scheme.
2002-08-16 14:26 msmith
* trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/global.c, trunk/icecast/src/slave.c,
trunk/icecast/src/source.c, trunk/icecast/src/source.h,
trunk/icecast/src/util.c, trunk/icecast/src/util.h: HTTP Basic
source login support. The old "ice-password" method is still
available, but is deprecated and turned off by default.
2002-08-13 13:53 msmith
* trunk/icecast/src/xslt.c: Cache-checking is case-insensitive on
win32.
2002-08-13 12:46 msmith
* trunk/icecast/src/logging.h, trunk/icecast/src/main.c,
trunk/icecast/src/xslt.c, trunk/icecast/src/xslt.h: Cache
stylesheets for transforming.
2002-08-13 01:08 msmith
* trunk/icecast/src/util.c, trunk/thread/thread.c: Timing fixes
2002-08-12 14:48 msmith
* trunk/icecast/src/client.c, trunk/icecast/src/client.h,
trunk/icecast/src/connection.c, trunk/icecast/src/util.c:
_handle_connection() cleanup, major restructuring. No feature
changes.
2002-08-12 10:11 msmith
* trunk/icecast/src/connection.c: Fix a bug in one of the error
(404) responses.
2002-08-11 14:23 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/util.c,
trunk/icecast/src/util.h: More path handling cleanups, and
memory leak fixes.
2002-08-11 14:00 msmith
* trunk/icecast/src/config.c, trunk/icecast/src/connection.c,
trunk/icecast/src/util.c, trunk/icecast/src/util.h: URI decoding
and path normalisation pass one (stuff needed for fileserving
later on)
2002-08-11 12:15 msmith
* trunk/icecast/configure.in, trunk/icecast/src/source.c:
Decrement client connections on source termination to avoid
eventual "server is full" messages.
2002-08-11 03:30 msmith
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2win.dsw,
trunk/icecast/win32/Icecast2win.rc,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/Icecast2winDlg.h,
trunk/icecast/win32/Status.cpp, trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast.xml,
trunk/icecast/win32/icecast2.iss,
trunk/icecast/win32/resource.h: win32 updates from oddsock
2002-08-10 08:01 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/format.h,
trunk/icecast/src/format_mp3.c,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/source.c,
trunk/icecast/src/util.c, trunk/icecast/src/util.h,
trunk/icecast/web/status.xsl: status.xsl updates, better now.
Automatically create .m3u responses for any existing streams. If
/stream.ogg exists, you can now request /stream.ogg.m3u in your
browser.
2002-08-10 04:51 msmith
* trunk/icecast/src/format_vorbis.c: Better error messages on some
corrupt sources.
2002-08-10 03:22 msmith
* trunk/icecast/src/config.c, trunk/icecast/src/connection.c,
trunk/icecast/src/slave.c, trunk/icecast/src/stats.c,
trunk/log/log.c, trunk/thread/thread.c, trunk/thread/thread.h:
Various cleanups
2002-08-10 03:12 msmith
* trunk/icecast/win32/icecast2logo2.bmp: More added files
2002-08-10 03:11 msmith
* trunk/icecast/win32/Icecast2win.clw,
trunk/icecast/win32/icecast2.iss: Added some more win32 files
2002-08-09 15:55 msmith
* trunk/icecast/AUTHORS, trunk/icecast/TODO,
trunk/icecast/conf/Makefile.am, trunk/icecast/conf/icecast.xml,
trunk/icecast/web/status.xsl, trunk/icecast/win32,
trunk/icecast/win32/ConfigTab.cpp,
trunk/icecast/win32/ConfigTab.h,
trunk/icecast/win32/Icecast2win.cpp,
trunk/icecast/win32/Icecast2win.dsp,
trunk/icecast/win32/Icecast2win.dsw,
trunk/icecast/win32/Icecast2win.h,
trunk/icecast/win32/Icecast2win.rc,
trunk/icecast/win32/Icecast2winDlg.cpp,
trunk/icecast/win32/Icecast2winDlg.h,
trunk/icecast/win32/ResizableDialog.cpp,
trunk/icecast/win32/ResizableDialog.h,
trunk/icecast/win32/StatsTab.cpp,
trunk/icecast/win32/StatsTab.h, trunk/icecast/win32/Status.cpp,
trunk/icecast/win32/Status.h, trunk/icecast/win32/StdAfx.cpp,
trunk/icecast/win32/StdAfx.h,
trunk/icecast/win32/TabCtrlSSL.cpp,
trunk/icecast/win32/TabCtrlSSL.h,
trunk/icecast/win32/TabPageSSL.cpp,
trunk/icecast/win32/TabPageSSL.h, trunk/icecast/win32/black.bmp,
trunk/icecast/win32/colors.h, trunk/icecast/win32/icecast.dsp,
trunk/icecast/win32/icecast.ico,
trunk/icecast/win32/icecast.xml, trunk/icecast/win32/res,
trunk/icecast/win32/res/Icecast2win.rc2,
trunk/icecast/win32/resource.h, trunk/icecast/win32/running.bmp,
trunk/icecast/win32/stopped.bmp: oddsock's win32 port/GUI
2002-08-09 15:41 msmith
* trunk/icecast/web, trunk/icecast/web/status.xsl,
trunk/icecast/web/status2.xsl: Two example xsl files (from
oddsock). Request http://host:port/status.xsl to get a nicely
formatted html status display in your web browser.
2002-08-09 15:04 msmith
* trunk/icecast/src/stats.c: Another free->xmlFree change
2002-08-09 15:03 msmith
* trunk/icecast/src/config.c: fix typo preventing compile
2002-08-09 14:47 msmith
* trunk/icecast/src/config.c: set default webroot dir correctly,
and fix a minor memleak
2002-08-09 14:38 msmith
* trunk/icecast/src/stats.c, trunk/icecast/src/xslt.c,
trunk/icecast/src/xslt.h: rename transformXSLT to
xslt_transform() for consistency with the rest of the source.
2002-08-09 14:36 msmith
* trunk/icecast/src/config.c: Redo memory-management in config.c
so that xmlFree() is called instead of free(), hopefully fixing
win32 segfaults.
2002-08-09 14:15 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/stats.c,
trunk/icecast/src/xslt.c: Various cleanups for accounting of
sent bytes. Crash bug in stats fixed.
2002-08-09 13:14 msmith
* trunk/icecast/src/main.c: Fix crash when socket couldn't be
bound.
2002-08-09 08:16 msmith
* trunk/icecast/src/xslt.c, trunk/icecast/src/xslt.h: Add new xslt
files, which I forgot earlier
2002-08-09 08:11 msmith
* trunk/icecast/conf/icecast.xml, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/main.c: Allow
setting the log level (for the error log, not the access log)
from the config file.
2002-08-09 08:06 msmith
* trunk/icecast/conf/icecast.xml, trunk/icecast/src/connection.c,
trunk/icecast/src/slave.c, trunk/icecast/src/source.c: Logging
cleanups, and a config file fix.
2002-08-09 06:52 msmith
* trunk/icecast/conf/icecast.xml, trunk/icecast/src/Makefile.am,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/connection.c, trunk/icecast/src/stats.c,
trunk/icecast/src/stats.h, trunk/icecast/src/util.c,
trunk/icecast/src/util.h, trunk/thread/thread.c: oddsock's xslt
stats support, slightly cleaned up
2002-08-08 08:26 msmith
* trunk/icecast/HACKING: Remove references to checking out
sub-modules, this is no longer needed.
2002-08-05 14:51 msmith
* trunk/icecast/conf/icecast.xml: Revert some accidental changes
to the config file.
2002-08-05 14:48 msmith
* trunk/httpp/httpp.c, trunk/httpp/httpp.h, trunk/icecast/TODO,
trunk/icecast/conf/icecast.xml, trunk/icecast/src/Makefile.am,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/global.h, trunk/icecast/src/main.c,
trunk/icecast/src/slave.c, trunk/icecast/src/slave.h,
trunk/icecast/src/source.c, trunk/net/resolver.c,
trunk/thread/thread.c, trunk/thread/thread.h: Cleaned up version
of Ciaran Anscomb's relaying patch.
2002-08-03 08:16 msmith
* trunk/icecast/src/logging.h: Updates for modified logging API.
2002-07-31 15:00 msmith
* trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/main.c, trunk/net/sock.c: Config fixes for
when parsing fails Don't needlessly call getsockopt() all the
time (it's a system call, hence expensive)
2002-07-24 14:52 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/source.c,
trunk/icecast/src/util.c, trunk/icecast/src/util.h: Allow either
poll or select to be used (based on whether HAVE_POLL is
defined.) Still need to make autoconf define HAVE_POLL where
relevent.
2002-07-24 13:55 msmith
* trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/format.h: Send the correct mimetype on client
request.
2002-07-23 15:15 msmith
* trunk/icecast/src/Makefile.am, trunk/icecast/src/format.c,
trunk/icecast/src/format_mp3.c, trunk/icecast/src/format_mp3.h,
trunk/icecast/src/logging.c, trunk/icecast/src/main.c: MP3
support for icecast2. - no title/metadata support - requires
modifications to source clients.
2002-07-11 04:00 calc
* trunk/icecast/autogen.sh, trunk/libshout/autogen.sh,
trunk/ogg-tools/oggmerge/autogen.sh,
trunk/ogg-tools/oggplay/autogen.sh, trunk/ogg/autogen.sh,
trunk/vorbis-tools/autogen.sh, trunk/vorbis/autogen.sh: fix
autogen.sh so that builddir != srcdir works
2002-07-06 05:37 msmith
* trunk/icecast/TODO: Add some notes about select() limitations to
TODO.
2002-06-29 04:29 msmith
* trunk/icecast/src/config.c, trunk/icecast/src/stats.c: Fix
locations of headers.
2002-06-15 04:57 msmith
* trunk/icecast/src/stats.c: fix previous fix.
2002-06-15 04:54 msmith
* trunk/icecast/src/stats.c: fixed crash in shutdown if startup
didn't happen properly.
2002-06-03 09:12 msmith
* trunk/icecast/src/format_vorbis.c: Fix for evil format string
vulnerability - people, don't DO THIS! Fix from Emil Styrke
<emil@lysator.liu.se>
2002-05-21 05:22 msmith
* trunk/icecast/src/main.c: missing newlines. oops.
2002-05-21 00:35 msmith
* trunk/icecast/src/main.c: Fix segfault from called log functions
before log was initialised.
2002-05-21 00:05 msmith
* trunk/icecast/src/main.c: Fix potential problem which would
occur if <changeuser> was set, but had no <user> or no <group>
element within it.
2002-05-20 13:25 msmith
* trunk/icecast/src/main.c: chroot and setuid interacted badly in
the previous version. Fixed now.
2002-05-14 11:06 msmith
* trunk/icecast/conf/icecast.xml, trunk/icecast/configure.in,
trunk/icecast/src/config.c, trunk/icecast/src/config.h,
trunk/icecast/src/main.c: Ian Kumlien's security (chroot() and
setuid() patch), with some modifications.
2002-05-08 14:07 msmith
* trunk/icecast/src/source.c: I am an idiot.
2002-05-08 14:02 msmith
* trunk/icecast/src/source.c: Minor fix to previous fix - use the
right variable!
2002-05-08 05:18 msmith
* trunk/icecast/src/source.c: Ensure we don't throw away a buffer
after only sending part of it.
2002-05-03 15:04 msmith
* trunk/httpp/httpp.c, trunk/httpp/httpp.h,
trunk/icecast/src/config.c, trunk/icecast/src/connection.c,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/stats.c:
Memory leaks. Lots of little ones.
2002-04-05 16:33 jack
* trunk/icecast/src/stats.c: Oddsock finally found the win32 crash
bug. _event_listeners wasn't being initialized (the first time
it was NULL). After the server is restarted it retained a
pointer to freed memory. We should have been initializing this
anyway.
2002-04-05 09:28 msmith
* trunk/httpp/httpp.c, trunk/icecast/src/format.h,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/source.c,
trunk/log/log.c: Buffer overflows. Requires a change to the
format plugin interface - jack: if you want this done
differently, feel free to change it (or ask me to).
2002-03-22 22:41 jack
* trunk/icecast/src/connection.c: Ouch. Serious bug found by
Ricardo Galli. When the cond var is signalled it will wake up a
thread. If all the connection handler threads are handling
connections, the signal will be ignored and clients will 'pend'
until another client causes the to signal again. We have to
check to see if there are more pending connections before
waiting on the signal again.
2002-03-22 21:18 jack
* trunk/icecast/src/source.c: We were triggering error logic when
no errors had occurred. Thanks to Ricardo Galli for finding this
bug.
2002-03-05 23:59 jack
* trunk/icecast/src/logging.h, trunk/thread/thread.c: win32
patches from Ed
2002-02-19 22:01 msmith
* trunk/icecast/src/format.c: Comment audio/mpeg out until it gets
implemented, to avoid segfaults.
2002-02-14 00:58 jack
* trunk/icecast/COPYING: Replace the placeholder with the real
license.
2002-02-14 00:41 jack
* trunk/icecast/src/stats.c: Fix race condition on thread shutdown.
2002-02-14 00:28 jack
* trunk/icecast/src/stats.c: Shut down the stats_connection and
stats_callback threads cleanly when stats_shutdown() is called.
2002-02-11 09:11 msmith
* trunk/avl/avl.h, trunk/httpp/httpp.c,
trunk/icecast/src/connection.c, trunk/icecast/src/format.c,
trunk/icecast/src/format.h, trunk/icecast/src/format_vorbis.c,
trunk/icecast/src/source.c, trunk/icecast/src/stats.h: Bunch of
fixes: - connections are now matched to format plugins based on
content-type headers, and are rejected if there isn't a format
handler for that content-type, or there is no content-type at
all. - format_vorbis now handles pages with granulepos of -1 in
the headers correctly (this happens if the headers are fairly
large, because of many comments, for example). - various
#include fixes. - buffer overflow in httpp.c fixed.
2002-02-08 03:59 jack
* trunk/icecast/src/main.c: Minor cleanup of 'static' functions.
Fixed usage bug where usage wasn't getting displayed properly.
2002-02-08 03:51 jack
* trunk/icecast/src/config.c, trunk/thread/thread.c: More win32
fixes.
2002-02-07 01:04 jack
* trunk/icecast/src/connection.c, trunk/icecast/src/logging.h,
trunk/icecast/src/os.h, trunk/icecast/src/source.c,
trunk/icecast/src/util.c, trunk/net/resolver.c,
trunk/net/sock.h, trunk/thread/thread.c, trunk/timing/timing.c,
trunk/timing/timing.h: minor build fixes for win32 courtesy of
Oddsock
2002-02-06 07:52 jack
* trunk/icecast/src/stats.c: Factor out common code in stats.c.
2002-02-06 06:11 jack
* trunk/icecast/src/stats.c, trunk/icecast/src/stats.h: A very
slightly modified version of oddsocks function to support gui
stats updates. Basically stats_connection() was copied to
stats_callback() (i should probably factor out some of the code
here!) with the change that instead of sending stats to a
socket, it sends the event to a callback function.
2002-02-04 07:08 jack
* trunk/icecast/src/format.c, trunk/icecast/src/format.h,
trunk/icecast/src/format_vorbis.c, trunk/icecast/src/source.c,
trunk/icecast/src/stats.c: Two things: 1) vorbis tags (ARTIST
and TITLE) now appear in the stats. Oddsock did the first cut of
this. 2) stats bug fixed. if a stats value was NULL a segfault
occurred. strdup(NULL) is fun!
2002-01-21 04:28 jack
* trunk/icecast/conf/icecast.xml, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/source.c: Add a
source-timeout config option and implement it. This prevents
lame sources from sticking around way too long. Default is 10
seconds.
2002-01-21 03:56 jack
* trunk/icecast/src/source.c: Make it log to a file when the
source gets disconnected
2002-01-21 03:10 jack
* trunk/icecast/src/connection.c: Fix a stupid but that Oddsock
and Ciaran both found. When sources log in we weren't checking
to see if the mountpoint was already taken. Since the mountpoint
was the key in the avl tree, bad things happened.
2002-01-05 00:29 jack
* trunk/icecast/src/format.h, trunk/icecast/src/format_vorbis.c,
trunk/icecast/src/source.c: Thanks to Ciaran for realizing that
we werne't freeing the format plugins memory on source exits.
This caused a small but noticable memory leak. The fix was to
add a new method to the format_plugin object - free_plugin() -
and have the source thread call this on shutdown.
2001-10-29 15:53 jack
* trunk/icecast/configure.in: Another fix. -mv8 is a Sparc-only
option, and gcc will barf if you use it on x86.
2001-10-29 15:32 jack
* trunk/icecast/configure.in: One more try at this.
2001-10-29 15:02 jack
* trunk/icecast/configure.in: Does this fix x86 Solaris?
2001-10-29 14:55 jack
* trunk/icecast/configure.in: Fix SUN_LIBS to apply to x86 Solaris
boxen. Who knew someone actually used x86 Solaris :)
2001-10-21 16:13 jack
* trunk/icecast/Makefile.am, trunk/icecast/configure.in,
trunk/icecast/src/Makefile.am: Fix broken CFLAGS handling.
2001-10-21 15:25 jack
* trunk/icecast/configure.in, trunk/icecast/src/Makefile.am: Fix
lib handling.
2001-10-21 15:12 jack
* trunk/icecast/configure.in: AC_CHECK_FUNC is stupid. It needs
the LIBS set already, and you can't pass in a set of libs to
use. So we save/restore for the call.
2001-10-21 14:19 jack
* trunk/icecast/configure.in: A few configure.in fixes. *
-D_REENTRANT probably needed on all platforms. Let's not limit
it to Linux and Solaris. * AM_PATH_OGG|VORBIS had a slight bug.
We shouldn't update the LIBS until after we've detected
anything. Thanks to Michael Pruett <michael@68k.org> for finding
this.
2001-10-21 10:07 msmith
* trunk/icecast/configure.in, trunk/icecast/src/source.c:
configure.in: solaris requires -D_REENTRANT. What about other
platforms? source.c: fix bug in handling non-fatal errors like
EAGAIN
2001-10-21 02:06 jack
* trunk/icecast/src/connection.c, trunk/icecast/src/global.h,
trunk/icecast/src/stats.c: Revert stacksize stuff and changes
for the thread module.
2001-10-20 22:48 jack
* trunk/icecast/src/connection.c, trunk/icecast/src/global.h,
trunk/icecast/src/stats.c: Fix icecast for changes in thread
module regarding stacksize. For icecast, the default stacksize
is unchanged (8k) until further testing on Solaris to determine
if a larger value is needed.
2001-10-20 21:29 jack
* trunk/icecast/src/Makefile.am: Forgot to add new compat.h to
Makefile.am. Fixed.
2001-10-20 21:28 jack
* trunk/icecast/configure.in, trunk/icecast/src/compat.h,
trunk/icecast/src/connection.h, trunk/timing/timing.c,
trunk/timing/timing.h: Add check for stdint.h, since Solaris
doesn't have it. This is needed on Linux for uint64_t, but
Solaris defines this in sys/types.h. Use check where
appropriate, and also add typedefs for Win32.
2001-10-20 07:59 jack
* trunk/icecast/TODO: Updated the TODO file.
2001-10-20 07:40 jack
* trunk/httpp/httpp.c, trunk/icecast/src/connection.c: Thanks to
Akos Maroy <darkeye@tyrell.hu> for this. These variables need to
be uppercase always in order to comply with the HTTP
specification. While not a problem internal to icecast, they
were slipping into the log files and breaking some
less-than-robust parsers.
2001-10-20 06:51 jack
* trunk/icecast/src/connection.h, trunk/icecast/src/main.c,
trunk/icecast/src/stats.c: It's too bad we don't have a commit
script that smacks me upside the head when I do stupid things
like this.
2001-10-20 06:43 jack
* trunk/icecast/src/config.c, trunk/icecast/src/connection.c,
trunk/icecast/src/connection.h, trunk/icecast/src/format.c,
trunk/icecast/src/logging.c, trunk/icecast/src/main.c,
trunk/icecast/src/source.c, trunk/icecast/src/stats.c,
trunk/icecast/src/util.c: Win32 fixes. Look how portable this
was ;) Just header stuff and some defines. Whee!
2001-09-10 03:26 jack
* trunk/icecast/HACKING: Add HACKING file for instructions for
building from CVS.
2001-09-10 03:04 jack
* trunk/avl/.cvsignore, trunk/httpp/.cvsignore,
trunk/icecast/src/.cvsignore, trunk/log/.cvsignore,
trunk/net/.cvsignore, trunk/thread/.cvsignore,
trunk/timing/.cvsignore: .cvsignore is fun!
2001-09-10 03:02 jack
* trunk/icecast/src/.cvsignore: .cvsignore stuff
2001-09-10 02:56 jack
* trunk/icecast/.cvsignore: Add .cvsignore
2001-09-10 02:55 jack
* trunk/icecast/Makefile.am, trunk/icecast/conf/Makefile.am,
trunk/icecast/configure.in: Include configuration files in 'make
dist'
2001-09-10 02:58 jack
* trunk/avl/.cvsignore, trunk/icecast/conf/.cvsignore,
trunk/icecast/src/.cvsignore: More .cvsignore
2001-09-10 02:21 jack
* trunk/icecast, trunk/icecast/AUTHORS, trunk/icecast/COPYING,
trunk/icecast/Makefile.am, trunk/icecast/README,
trunk/icecast/TODO, trunk/icecast/acinclude.m4,
trunk/icecast/autogen.sh, trunk/icecast/conf,
trunk/icecast/conf/icecast.xml, trunk/icecast/configure.in,
trunk/icecast/src, trunk/icecast/src/Makefile.am,
trunk/icecast/src/TODO, trunk/icecast/src/client.c,
trunk/icecast/src/client.h, trunk/icecast/src/config.c,
trunk/icecast/src/config.h, trunk/icecast/src/configtest.c,
trunk/icecast/src/connection.c, trunk/icecast/src/connection.h,
trunk/icecast/src/format.c, trunk/icecast/src/format.h,
trunk/icecast/src/format_vorbis.c,
trunk/icecast/src/format_vorbis.h, trunk/icecast/src/global.c,
trunk/icecast/src/global.h, trunk/icecast/src/logging.c,
trunk/icecast/src/logging.h, trunk/icecast/src/main.c,
trunk/icecast/src/os.h, trunk/icecast/src/refbuf.c,
trunk/icecast/src/refbuf.h, trunk/icecast/src/sighandler.c,
trunk/icecast/src/sighandler.h, trunk/icecast/src/source.c,
trunk/icecast/src/source.h, trunk/icecast/src/stats.c,
trunk/icecast/src/stats.h, trunk/icecast/src/util.c,
trunk/icecast/src/util.h: Initial revision
|