├── .gitignore ├── AUTHORS ├── COPYING ├── GIT-VERSION-GEN ├── HACKING ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── TODO ├── aclocal.m4 ├── admin ├── Makefile.am ├── Makefile.in ├── flashpolicy ├── listclients.xsl ├── listmounts.xsl ├── logs.xsl ├── manageauth.xsl ├── managerelays.xsl ├── moveclients.xsl ├── response.xsl ├── showlog.xsl ├── stats.xsl ├── updatemetadata.xsl ├── viewxml.xsl └── xspf.xsl ├── autogen.sh ├── conf ├── Makefile.am ├── Makefile.in ├── i686-w64-mingw32.nsis.in ├── icecast.xml.in ├── icecast_auth.php ├── icecast_minimal.xml.in ├── icecast_shoutcast_compat.xml.in └── x86_64-w64-mingw32.nsis.in ├── config.h.in ├── config.h.vc6 ├── config.sub ├── configure ├── configure.ac ├── doc ├── Index.hhk ├── Makefile.am ├── Makefile.in ├── icecast2.hhc ├── icecast2.hhp ├── icecast2_admin.html ├── icecast2_basicsetup.html ├── icecast2_config_file.html ├── icecast2_faq.html ├── icecast2_glossary.html ├── icecast2_introduction.html ├── icecast2_listenerauth.html ├── icecast2_relay.html ├── icecast2_stats.html ├── icecast2_win32.html ├── icecast2_yp.html ├── index.html ├── index_win32.html ├── listener_auth1.jpg ├── listener_auth2.jpg ├── listener_auth3.jpg ├── stats1.jpg ├── style.css ├── win32_section1.html ├── win32_section2.html ├── win32_section3.html └── windowtitle.jpg ├── examples ├── icecast.xml ├── icecast_minimal.xml └── icecast_shoutcast_compat.xml ├── icecast.spec ├── m4 ├── acx_pthread.m4 ├── ogg.m4 ├── speex.m4 ├── theora.m4 ├── vorbis.m4 ├── xiph_compiler.m4 ├── xiph_curl.m4 ├── xiph_net.m4 ├── xiph_openssl.m4 ├── xiph_path_python.m4 ├── xiph_types.m4 └── xiph_xml2.m4 ├── src ├── Makefile.am ├── Makefile.in ├── admin.c ├── admin.h ├── auth.c ├── auth.h ├── auth_cmd.c ├── auth_cmd.h ├── auth_htpasswd.c ├── auth_htpasswd.h ├── auth_url.c ├── auth_url.h ├── avl │ ├── BUILDING │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── avl.c │ ├── avl.dsp │ ├── avl.h │ └── test.c ├── cfgfile.c ├── cfgfile.h ├── client.c ├── client.h ├── compat.h ├── connection.c ├── connection.h ├── curl_ice.h ├── event.c ├── event.h ├── flv.c ├── flv.h ├── fnmatch.c ├── fnmatch.h ├── fnmatch_loop.c ├── format.c ├── format.h ├── format_ebml.c ├── format_ebml.h ├── format_flac.c ├── format_flac.h ├── format_kate.c ├── format_kate.h ├── format_midi.c ├── format_midi.h ├── format_mp3.c ├── format_mp3.h ├── format_ogg.c ├── format_ogg.h ├── format_opus.c ├── format_opus.h ├── format_skeleton.c ├── format_skeleton.h ├── format_speex.c ├── format_speex.h ├── format_theora.c ├── format_theora.h ├── format_vorbis.c ├── format_vorbis.h ├── fserve.c ├── fserve.h ├── global.c ├── global.h ├── httpp │ ├── BUILDING │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── httpp.c │ ├── httpp.h │ └── test.c ├── log │ ├── Makefile.am │ ├── Makefile.in │ ├── log.c │ ├── log.h │ └── test.c ├── logging.c ├── logging.h ├── main.c ├── md5.c ├── md5.h ├── mpeg.c ├── mpeg.h ├── net │ ├── BUILDING │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── resolver.c │ ├── resolver.h │ ├── sock.c │ ├── sock.h │ └── test_resolver.c ├── params.c ├── params.h ├── refbuf.c ├── refbuf.h ├── sighandler.c ├── sighandler.h ├── slave.c ├── slave.h ├── source.c ├── source.h ├── stats.c ├── stats.h ├── thread │ ├── BUILDING │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── thread.c │ └── thread.h ├── timing │ ├── BUILDING │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── timing.c │ └── timing.h ├── util.c ├── util.h ├── xslt.c ├── xslt.h ├── yp.c └── yp.h ├── web ├── 7.xsl ├── Makefile.am ├── Makefile.in ├── admin.html ├── adminbar.html ├── auth.xsl ├── favicon.ico ├── images │ ├── Makefile.am │ ├── Makefile.in │ ├── icecast.png │ ├── key.png │ └── tunein.png ├── index.html ├── server_version.xsl ├── status.xsl ├── status2.xsl ├── statusbar.html └── style.css └── windows ├── ConfigTab.cpp ├── ConfigTab.h ├── Icecast2win.clw ├── Icecast2win.cpp ├── Icecast2win.dsp ├── Icecast2win.dsw ├── Icecast2win.h ├── Icecast2win.rc ├── Icecast2winDlg.cpp ├── Icecast2winDlg.h ├── Makefile.am ├── Makefile.in ├── StatsTab.cpp ├── StatsTab.h ├── Status.cpp ├── Status.h ├── StdAfx.cpp ├── StdAfx.h ├── TRAYNOT.h ├── TabCtrlSSL.cpp ├── TabCtrlSSL.h ├── TabPageSSL.cpp ├── TabPageSSL.h ├── Traynot.cpp ├── black.bmp ├── colors.h ├── credits.bmp ├── icecast.dsp ├── icecast.ico ├── icecast.nsis ├── icecast2.iss ├── icecast2_console.dsp ├── icecast2_console.dsw ├── icecast2logo2.bmp ├── icecast2title.bmp ├── icecast64.nsis ├── icecastService.cpp ├── icecastService.dsp ├── res ├── Icecast2win.rc2 ├── Makefile.am └── Makefile.in ├── resource.h ├── running.bmp └── stopped.bmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/COPYING -------------------------------------------------------------------------------- /GIT-VERSION-GEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/GIT-VERSION-GEN -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- 1 | This needs updating. 2 | 3 | 4 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/TODO -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /admin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/Makefile.am -------------------------------------------------------------------------------- /admin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/Makefile.in -------------------------------------------------------------------------------- /admin/flashpolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/flashpolicy -------------------------------------------------------------------------------- /admin/listclients.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/listclients.xsl -------------------------------------------------------------------------------- /admin/listmounts.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/listmounts.xsl -------------------------------------------------------------------------------- /admin/logs.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/logs.xsl -------------------------------------------------------------------------------- /admin/manageauth.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/manageauth.xsl -------------------------------------------------------------------------------- /admin/managerelays.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/managerelays.xsl -------------------------------------------------------------------------------- /admin/moveclients.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/moveclients.xsl -------------------------------------------------------------------------------- /admin/response.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/response.xsl -------------------------------------------------------------------------------- /admin/showlog.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/showlog.xsl -------------------------------------------------------------------------------- /admin/stats.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/stats.xsl -------------------------------------------------------------------------------- /admin/updatemetadata.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/updatemetadata.xsl -------------------------------------------------------------------------------- /admin/viewxml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/viewxml.xsl -------------------------------------------------------------------------------- /admin/xspf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/admin/xspf.xsl -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/autogen.sh -------------------------------------------------------------------------------- /conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/conf/Makefile.am -------------------------------------------------------------------------------- /conf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/conf/Makefile.in -------------------------------------------------------------------------------- /conf/i686-w64-mingw32.nsis.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/conf/i686-w64-mingw32.nsis.in -------------------------------------------------------------------------------- /conf/icecast.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/conf/icecast.xml.in -------------------------------------------------------------------------------- /conf/icecast_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/conf/icecast_auth.php -------------------------------------------------------------------------------- /conf/icecast_minimal.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/conf/icecast_minimal.xml.in -------------------------------------------------------------------------------- /conf/icecast_shoutcast_compat.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/conf/icecast_shoutcast_compat.xml.in -------------------------------------------------------------------------------- /conf/x86_64-w64-mingw32.nsis.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/conf/x86_64-w64-mingw32.nsis.in -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/config.h.in -------------------------------------------------------------------------------- /config.h.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/config.h.vc6 -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Index.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/Index.hhk -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/icecast2.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2.hhc -------------------------------------------------------------------------------- /doc/icecast2.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2.hhp -------------------------------------------------------------------------------- /doc/icecast2_admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_admin.html -------------------------------------------------------------------------------- /doc/icecast2_basicsetup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_basicsetup.html -------------------------------------------------------------------------------- /doc/icecast2_config_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_config_file.html -------------------------------------------------------------------------------- /doc/icecast2_faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_faq.html -------------------------------------------------------------------------------- /doc/icecast2_glossary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_glossary.html -------------------------------------------------------------------------------- /doc/icecast2_introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_introduction.html -------------------------------------------------------------------------------- /doc/icecast2_listenerauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_listenerauth.html -------------------------------------------------------------------------------- /doc/icecast2_relay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_relay.html -------------------------------------------------------------------------------- /doc/icecast2_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_stats.html -------------------------------------------------------------------------------- /doc/icecast2_win32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_win32.html -------------------------------------------------------------------------------- /doc/icecast2_yp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/icecast2_yp.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/index_win32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/index_win32.html -------------------------------------------------------------------------------- /doc/listener_auth1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/listener_auth1.jpg -------------------------------------------------------------------------------- /doc/listener_auth2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/listener_auth2.jpg -------------------------------------------------------------------------------- /doc/listener_auth3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/listener_auth3.jpg -------------------------------------------------------------------------------- /doc/stats1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/stats1.jpg -------------------------------------------------------------------------------- /doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/style.css -------------------------------------------------------------------------------- /doc/win32_section1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/win32_section1.html -------------------------------------------------------------------------------- /doc/win32_section2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/win32_section2.html -------------------------------------------------------------------------------- /doc/win32_section3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/win32_section3.html -------------------------------------------------------------------------------- /doc/windowtitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/doc/windowtitle.jpg -------------------------------------------------------------------------------- /examples/icecast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/examples/icecast.xml -------------------------------------------------------------------------------- /examples/icecast_minimal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/examples/icecast_minimal.xml -------------------------------------------------------------------------------- /examples/icecast_shoutcast_compat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/examples/icecast_shoutcast_compat.xml -------------------------------------------------------------------------------- /icecast.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/icecast.spec -------------------------------------------------------------------------------- /m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/ogg.m4 -------------------------------------------------------------------------------- /m4/speex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/speex.m4 -------------------------------------------------------------------------------- /m4/theora.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/theora.m4 -------------------------------------------------------------------------------- /m4/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/vorbis.m4 -------------------------------------------------------------------------------- /m4/xiph_compiler.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/xiph_compiler.m4 -------------------------------------------------------------------------------- /m4/xiph_curl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/xiph_curl.m4 -------------------------------------------------------------------------------- /m4/xiph_net.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/xiph_net.m4 -------------------------------------------------------------------------------- /m4/xiph_openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/xiph_openssl.m4 -------------------------------------------------------------------------------- /m4/xiph_path_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/xiph_path_python.m4 -------------------------------------------------------------------------------- /m4/xiph_types.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/xiph_types.m4 -------------------------------------------------------------------------------- /m4/xiph_xml2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/m4/xiph_xml2.m4 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/admin.c -------------------------------------------------------------------------------- /src/admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/admin.h -------------------------------------------------------------------------------- /src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/auth.c -------------------------------------------------------------------------------- /src/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/auth.h -------------------------------------------------------------------------------- /src/auth_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/auth_cmd.c -------------------------------------------------------------------------------- /src/auth_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/auth_cmd.h -------------------------------------------------------------------------------- /src/auth_htpasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/auth_htpasswd.c -------------------------------------------------------------------------------- /src/auth_htpasswd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/auth_htpasswd.h -------------------------------------------------------------------------------- /src/auth_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/auth_url.c -------------------------------------------------------------------------------- /src/auth_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/auth_url.h -------------------------------------------------------------------------------- /src/avl/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/BUILDING -------------------------------------------------------------------------------- /src/avl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/COPYING -------------------------------------------------------------------------------- /src/avl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/Makefile.am -------------------------------------------------------------------------------- /src/avl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/Makefile.in -------------------------------------------------------------------------------- /src/avl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/README -------------------------------------------------------------------------------- /src/avl/TODO: -------------------------------------------------------------------------------- 1 | - avl_get_last() 2 | - a little more cleanup probably 3 | -------------------------------------------------------------------------------- /src/avl/avl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/avl.c -------------------------------------------------------------------------------- /src/avl/avl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/avl.dsp -------------------------------------------------------------------------------- /src/avl/avl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/avl.h -------------------------------------------------------------------------------- /src/avl/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/avl/test.c -------------------------------------------------------------------------------- /src/cfgfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/cfgfile.c -------------------------------------------------------------------------------- /src/cfgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/cfgfile.h -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/client.c -------------------------------------------------------------------------------- /src/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/client.h -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/connection.c -------------------------------------------------------------------------------- /src/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/connection.h -------------------------------------------------------------------------------- /src/curl_ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/curl_ice.h -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/event.c -------------------------------------------------------------------------------- /src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/event.h -------------------------------------------------------------------------------- /src/flv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/flv.c -------------------------------------------------------------------------------- /src/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/flv.h -------------------------------------------------------------------------------- /src/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/fnmatch.c -------------------------------------------------------------------------------- /src/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/fnmatch.h -------------------------------------------------------------------------------- /src/fnmatch_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/fnmatch_loop.c -------------------------------------------------------------------------------- /src/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format.c -------------------------------------------------------------------------------- /src/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format.h -------------------------------------------------------------------------------- /src/format_ebml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_ebml.c -------------------------------------------------------------------------------- /src/format_ebml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_ebml.h -------------------------------------------------------------------------------- /src/format_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_flac.c -------------------------------------------------------------------------------- /src/format_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_flac.h -------------------------------------------------------------------------------- /src/format_kate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_kate.c -------------------------------------------------------------------------------- /src/format_kate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_kate.h -------------------------------------------------------------------------------- /src/format_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_midi.c -------------------------------------------------------------------------------- /src/format_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_midi.h -------------------------------------------------------------------------------- /src/format_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_mp3.c -------------------------------------------------------------------------------- /src/format_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_mp3.h -------------------------------------------------------------------------------- /src/format_ogg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_ogg.c -------------------------------------------------------------------------------- /src/format_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_ogg.h -------------------------------------------------------------------------------- /src/format_opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_opus.c -------------------------------------------------------------------------------- /src/format_opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_opus.h -------------------------------------------------------------------------------- /src/format_skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_skeleton.c -------------------------------------------------------------------------------- /src/format_skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_skeleton.h -------------------------------------------------------------------------------- /src/format_speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_speex.c -------------------------------------------------------------------------------- /src/format_speex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_speex.h -------------------------------------------------------------------------------- /src/format_theora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_theora.c -------------------------------------------------------------------------------- /src/format_theora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_theora.h -------------------------------------------------------------------------------- /src/format_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_vorbis.c -------------------------------------------------------------------------------- /src/format_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/format_vorbis.h -------------------------------------------------------------------------------- /src/fserve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/fserve.c -------------------------------------------------------------------------------- /src/fserve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/fserve.h -------------------------------------------------------------------------------- /src/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/global.c -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/global.h -------------------------------------------------------------------------------- /src/httpp/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/BUILDING -------------------------------------------------------------------------------- /src/httpp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/COPYING -------------------------------------------------------------------------------- /src/httpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/Makefile.am -------------------------------------------------------------------------------- /src/httpp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/Makefile.in -------------------------------------------------------------------------------- /src/httpp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/README -------------------------------------------------------------------------------- /src/httpp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/TODO -------------------------------------------------------------------------------- /src/httpp/httpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/httpp.c -------------------------------------------------------------------------------- /src/httpp/httpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/httpp.h -------------------------------------------------------------------------------- /src/httpp/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/httpp/test.c -------------------------------------------------------------------------------- /src/log/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/log/Makefile.am -------------------------------------------------------------------------------- /src/log/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/log/Makefile.in -------------------------------------------------------------------------------- /src/log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/log/log.c -------------------------------------------------------------------------------- /src/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/log/log.h -------------------------------------------------------------------------------- /src/log/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/log/test.c -------------------------------------------------------------------------------- /src/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/logging.c -------------------------------------------------------------------------------- /src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/logging.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/main.c -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/mpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/mpeg.c -------------------------------------------------------------------------------- /src/mpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/mpeg.h -------------------------------------------------------------------------------- /src/net/BUILDING: -------------------------------------------------------------------------------- 1 | defines that affect compilation 2 | 3 | none currently 4 | -------------------------------------------------------------------------------- /src/net/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/COPYING -------------------------------------------------------------------------------- /src/net/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/Makefile.am -------------------------------------------------------------------------------- /src/net/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/Makefile.in -------------------------------------------------------------------------------- /src/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/README -------------------------------------------------------------------------------- /src/net/TODO: -------------------------------------------------------------------------------- 1 | - add getXbyY_r function support 2 | -------------------------------------------------------------------------------- /src/net/resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/resolver.c -------------------------------------------------------------------------------- /src/net/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/resolver.h -------------------------------------------------------------------------------- /src/net/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/sock.c -------------------------------------------------------------------------------- /src/net/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/sock.h -------------------------------------------------------------------------------- /src/net/test_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/net/test_resolver.c -------------------------------------------------------------------------------- /src/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/params.c -------------------------------------------------------------------------------- /src/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/params.h -------------------------------------------------------------------------------- /src/refbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/refbuf.c -------------------------------------------------------------------------------- /src/refbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/refbuf.h -------------------------------------------------------------------------------- /src/sighandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/sighandler.c -------------------------------------------------------------------------------- /src/sighandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/sighandler.h -------------------------------------------------------------------------------- /src/slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/slave.c -------------------------------------------------------------------------------- /src/slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/slave.h -------------------------------------------------------------------------------- /src/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/source.c -------------------------------------------------------------------------------- /src/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/source.h -------------------------------------------------------------------------------- /src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/stats.c -------------------------------------------------------------------------------- /src/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/stats.h -------------------------------------------------------------------------------- /src/thread/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/thread/BUILDING -------------------------------------------------------------------------------- /src/thread/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/thread/COPYING -------------------------------------------------------------------------------- /src/thread/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/thread/Makefile.am -------------------------------------------------------------------------------- /src/thread/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/thread/Makefile.in -------------------------------------------------------------------------------- /src/thread/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/thread/README -------------------------------------------------------------------------------- /src/thread/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/thread/TODO -------------------------------------------------------------------------------- /src/thread/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/thread/thread.c -------------------------------------------------------------------------------- /src/thread/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/thread/thread.h -------------------------------------------------------------------------------- /src/timing/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/timing/BUILDING -------------------------------------------------------------------------------- /src/timing/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/timing/COPYING -------------------------------------------------------------------------------- /src/timing/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/timing/Makefile.am -------------------------------------------------------------------------------- /src/timing/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/timing/Makefile.in -------------------------------------------------------------------------------- /src/timing/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/timing/README -------------------------------------------------------------------------------- /src/timing/TODO: -------------------------------------------------------------------------------- 1 | 2 | nothing 3 | -------------------------------------------------------------------------------- /src/timing/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/timing/timing.c -------------------------------------------------------------------------------- /src/timing/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/timing/timing.h -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/util.c -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/util.h -------------------------------------------------------------------------------- /src/xslt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/xslt.c -------------------------------------------------------------------------------- /src/xslt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/xslt.h -------------------------------------------------------------------------------- /src/yp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/yp.c -------------------------------------------------------------------------------- /src/yp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/src/yp.h -------------------------------------------------------------------------------- /web/7.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/7.xsl -------------------------------------------------------------------------------- /web/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/Makefile.am -------------------------------------------------------------------------------- /web/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/Makefile.in -------------------------------------------------------------------------------- /web/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/admin.html -------------------------------------------------------------------------------- /web/adminbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/adminbar.html -------------------------------------------------------------------------------- /web/auth.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/auth.xsl -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/images/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/images/Makefile.am -------------------------------------------------------------------------------- /web/images/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/images/Makefile.in -------------------------------------------------------------------------------- /web/images/icecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/images/icecast.png -------------------------------------------------------------------------------- /web/images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/images/key.png -------------------------------------------------------------------------------- /web/images/tunein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/images/tunein.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/index.html -------------------------------------------------------------------------------- /web/server_version.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/server_version.xsl -------------------------------------------------------------------------------- /web/status.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/status.xsl -------------------------------------------------------------------------------- /web/status2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/status2.xsl -------------------------------------------------------------------------------- /web/statusbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/statusbar.html -------------------------------------------------------------------------------- /web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/web/style.css -------------------------------------------------------------------------------- /windows/ConfigTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/ConfigTab.cpp -------------------------------------------------------------------------------- /windows/ConfigTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/ConfigTab.h -------------------------------------------------------------------------------- /windows/Icecast2win.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Icecast2win.clw -------------------------------------------------------------------------------- /windows/Icecast2win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Icecast2win.cpp -------------------------------------------------------------------------------- /windows/Icecast2win.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Icecast2win.dsp -------------------------------------------------------------------------------- /windows/Icecast2win.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Icecast2win.dsw -------------------------------------------------------------------------------- /windows/Icecast2win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Icecast2win.h -------------------------------------------------------------------------------- /windows/Icecast2win.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Icecast2win.rc -------------------------------------------------------------------------------- /windows/Icecast2winDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Icecast2winDlg.cpp -------------------------------------------------------------------------------- /windows/Icecast2winDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Icecast2winDlg.h -------------------------------------------------------------------------------- /windows/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Makefile.am -------------------------------------------------------------------------------- /windows/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Makefile.in -------------------------------------------------------------------------------- /windows/StatsTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/StatsTab.cpp -------------------------------------------------------------------------------- /windows/StatsTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/StatsTab.h -------------------------------------------------------------------------------- /windows/Status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Status.cpp -------------------------------------------------------------------------------- /windows/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Status.h -------------------------------------------------------------------------------- /windows/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/StdAfx.cpp -------------------------------------------------------------------------------- /windows/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/StdAfx.h -------------------------------------------------------------------------------- /windows/TRAYNOT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/TRAYNOT.h -------------------------------------------------------------------------------- /windows/TabCtrlSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/TabCtrlSSL.cpp -------------------------------------------------------------------------------- /windows/TabCtrlSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/TabCtrlSSL.h -------------------------------------------------------------------------------- /windows/TabPageSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/TabPageSSL.cpp -------------------------------------------------------------------------------- /windows/TabPageSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/TabPageSSL.h -------------------------------------------------------------------------------- /windows/Traynot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/Traynot.cpp -------------------------------------------------------------------------------- /windows/black.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/black.bmp -------------------------------------------------------------------------------- /windows/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/colors.h -------------------------------------------------------------------------------- /windows/credits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/credits.bmp -------------------------------------------------------------------------------- /windows/icecast.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast.dsp -------------------------------------------------------------------------------- /windows/icecast.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast.ico -------------------------------------------------------------------------------- /windows/icecast.nsis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast.nsis -------------------------------------------------------------------------------- /windows/icecast2.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast2.iss -------------------------------------------------------------------------------- /windows/icecast2_console.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast2_console.dsp -------------------------------------------------------------------------------- /windows/icecast2_console.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast2_console.dsw -------------------------------------------------------------------------------- /windows/icecast2logo2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast2logo2.bmp -------------------------------------------------------------------------------- /windows/icecast2title.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast2title.bmp -------------------------------------------------------------------------------- /windows/icecast64.nsis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecast64.nsis -------------------------------------------------------------------------------- /windows/icecastService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecastService.cpp -------------------------------------------------------------------------------- /windows/icecastService.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/icecastService.dsp -------------------------------------------------------------------------------- /windows/res/Icecast2win.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/res/Icecast2win.rc2 -------------------------------------------------------------------------------- /windows/res/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/res/Makefile.am -------------------------------------------------------------------------------- /windows/res/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/res/Makefile.in -------------------------------------------------------------------------------- /windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/resource.h -------------------------------------------------------------------------------- /windows/running.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/running.bmp -------------------------------------------------------------------------------- /windows/stopped.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlheyes/icecast-kh/HEAD/windows/stopped.bmp --------------------------------------------------------------------------------