2003-04-23 08:20:45 -04:00
|
|
|
2.0 CRITICAL - These are the things without which 2.0 cannot be released
|
|
|
|
____________
|
|
|
|
|
|
|
|
- libshout 2.0 and ices 2.0 releases, also an ices 0.x release that works with
|
|
|
|
this. Without source clients, icecast isn't much use...
|
|
|
|
|
2001-09-09 22:21:46 -04:00
|
|
|
BUGS
|
|
|
|
----
|
2003-02-24 08:37:15 -05:00
|
|
|
- logging - bytes send and time listening may both be broken?
|
|
|
|
|
2001-09-09 22:21:46 -04:00
|
|
|
FEATURES
|
|
|
|
--------
|
2002-09-24 04:16:24 -04:00
|
|
|
|
2003-12-29 11:18:15 -05:00
|
|
|
- Should icecast automatically (i.e. without needing -c) look for the config
|
|
|
|
file in /etc/icecast.xml or something?
|
|
|
|
|
2002-09-24 04:16:24 -04:00
|
|
|
- pull out vorbis comments. and send to stats. This seems to be being
|
|
|
|
done, but it isn't working right.
|
2001-09-09 22:21:46 -04:00
|
|
|
|
|
|
|
- directory server GUID checks
|
|
|
|
directory server does GET /GUID-asldjfasldfjalsdkfjasldkfj HTTP/1.0
|
|
|
|
and either gets a 404 if it's wrong, or a 200 if it's correct.
|
|
|
|
|
|
|
|
- adding new stats type, event. events don't modify the global stats tree,
|
|
|
|
ie, source /1234.ogg disconnected
|
|
|
|
|
2001-10-20 03:59:01 -04:00
|
|
|
- support W3C Extended Logging (http://www.w3.org/TR/WD-logfile.html)
|
|
|
|
toggle between this and Apache Combined Log Format in the config file.
|
|
|
|
default to apache style.
|
2002-08-05 10:48:04 -04:00
|
|
|
|
|
|
|
- allow using get_predata() stuff to send an "intro" to any newly-connected
|
|
|
|
user?
|
|
|
|
|
2002-11-22 08:00:44 -05:00
|
|
|
- stats to list currently connected clients: ip and hostname
|
|
|
|
|
2003-02-06 08:10:48 -05:00
|
|
|
- stream switching (drop clients to another stream on disconnect of source)
|
|
|
|
- a) fallbacks from named location to new mountpoint
|
|
|
|
- OR b) fallbacks for connected clients to new mountpoint (so newly-connecting
|
|
|
|
clients just get a 404 on the old path)
|
|
|
|
- OR c) combination - first one, plus generic alias ability?
|
|
|
|
|
|
|
|
- /admin/* for all admin functionality
|
|
|
|
- configuring fallbacks
|
|
|
|
- mp3 metadata injection
|
|
|
|
- remote shutdown?
|
|
|
|
|
|
|
|
- general registerable url-handlers in connection.c rather than hard-coded list
|
|
|
|
(already getting unmaintainable)
|
|
|
|
|
|
|
|
- httpp - split out query string for further processing
|
|
|
|
|
2003-02-24 08:37:15 -05:00
|
|
|
- option to use ipv6 (equiv to using <bind-address>::</bindaddress>, I think.
|
2003-02-06 08:10:48 -05:00
|
|
|
|
2003-03-05 08:03:35 -05:00
|
|
|
- abstract all admin functionality to a set of commands, and command handlers.
|
|
|
|
Make /admin/* just parse according to a set of rules, and dispatch generic
|
|
|
|
commands through that.
|
|
|
|
Use this for alternative admin interfaces (GUI? telnet interface?)
|
2002-11-22 08:00:44 -05:00
|
|
|
|
2003-04-03 07:41:18 -05:00
|
|
|
- listener authentication (per mountpoint?)
|
|
|
|
|
|
|
|
- all timer-based functionality (yp updates, slave/relay checks) should have a
|
|
|
|
single timer thread which dispatches events through the normal event
|
|
|
|
mechanism (to worker threads from the main pool). This will reduce the
|
|
|
|
extraneous thread count.
|
|
|
|
|
|
|
|
- atomic admin function to: set fallback from A->B, remove A, move mountpoint
|
|
|
|
B to A. Needs forced-source removal first.
|
|
|
|
|
|
|
|
- race condition between avl_tree_unlock(pending_tree) and
|
|
|
|
thread_cond_wait(&fserv_cond) in fserv.c, it's a pain to fix but should be.
|
|
|
|
|
|
|
|
- do we need to use locks on the avl client_trees in source.c and fserv.c?
|
|
|
|
|
|
|
|
|
|
|
|
|