| View previous topic :: View next topic |
| Author |
Message |
DJ-Zath

Joined: 11 Feb 2009 Posts: 155 Location: Western Illinois - USA
|
Posted: Tue Dec 18, 2012 12:20 am Post subject: |
|
|
hi!
what I'm seeing here, is a missing <mount> block for your stream(s)
this may not be a requirement, however, then when you call up a mount, you must also LISTEN for said mount as well
example:
if your encoder/DSP connects to (example:) 127.0.0.1:8000/mystream
players, on the same box will also connect to 127.0.0.1:8000/mystream
players on the same subnet will connect to 192.168.1.100:8000/mystream
players on the internet will connect to http://[whatever whatsmyip.com shows as your ip]/mystream
you can't connect to [whichever ip]:8000/ though, unless you set an ALIAS for that.
so any player HAS to connect to http://[whichever ip]:8000/mystream
(you currently have the alias tag set for the stats page instead)
NOTE:
if you are using DHCP, its CRITICALLY IMPORTANT that your CURRENTLY-ASSIGNED IP is used, and, note that this number can CHANGE on you at anytime without warning!
for icecast, the <host> tag should be 127.0.0.1 or the LOCAL-assigned IP. not the internet-assigned IP
if you are using a DONS service, don't forget to keep that updated as well!
generally, running any server on a DHCP-assigned net connection is a real pain..
if you can only hear it locally, but not on the net itself.. chances are, your DHCP table has changed...
the best indicator for this is to try to have a different machine log into Icecast's webpage and see if that gets through.. don't try using the SAME computer where icecast lives as most cheap routers will prevent a "loopback feedback" from happening by preventing a local machine to access itself on the same subnet through the internet port interface..
some routers might even prevent ANY computer on the same subnet from accessing another computer on said subnet through the internet port interface. this includes (especially) WIRELESS connections.
have a friend see if they can reach your icecast server.
I hope this helps! _________________ -DjZ-
 |
|
| Back to top |
|
 |
weirdorecords
Joined: 05 Oct 2010 Posts: 27
|
Posted: Tue Dec 18, 2012 10:15 pm Post subject: |
|
|
Yep, I am indeed using an entirely different computer to try and listen outside my desktop's network (or LAN). I have tried browsing to all of the following:
/myip:8001/stream
/myip:8001/stream.m3u
/myip:8001
/myip:8001/status.xsl
When I browse to /myip:8001/status.xsl I can see an icecast generated page, with up to date metadata that changes depending on what my desktop is streaming.
However, when I browse to /myip:8001/stream.m3u I begin to connect, but then after about 30 seconds of buffering the connection times out & stops.
That is why I am trying to look at the icecast error logs.
I can't use the curl command as Karl was kind enough to suggest, because I'm running Windows.
My config file hasn't had a <mount> section in it for some time, but I have not yet tried putting one in & fiddling around with that. So that'll be the next thing I try. _________________ thanks much!
Angela
Weirdo Records |
|
| Back to top |
|
 |
weirdorecords
Joined: 05 Oct 2010 Posts: 27
|
Posted: Tue Dec 18, 2012 10:41 pm Post subject: |
|
|
In answer to some other concerns you mentioned, DJ-Zath, yep, I have a static IP. I've called my ISP several times over the last week to make sure that it's working properly & there's no firewall or problem with the router.
I tried changing this line of my config file:
<alias source="/" dest="/status.xsl"/>
to this:
<alias source="/" dest=":8001/stream.m3u"/>
No change. I can still browse to the Icecast info page, the metadata is still up to date, and I still can't hear anything if I browse to or use a piece of radio software to access myip:8001/stream.m3u
Haven't had time to work on the <mount> section yet, but that's next _________________ thanks much!
Angela
Weirdo Records |
|
| Back to top |
|
 |
weirdorecords
Joined: 05 Oct 2010 Posts: 27
|
Posted: Sat Dec 22, 2012 2:36 pm Post subject: |
|
|
I've now been working on this problem for quite a while and I'm still at square one. No sound, no error logs, nothing I've put in a <mount> makes any difference. Karl, is there an alternate way of getting the information that you suggested with that curl command that would work well in Windows? _________________ thanks much!
Angela
Weirdo Records |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Sun Dec 23, 2012 12:29 am Post subject: |
|
|
what is in the m3u you requested, download it like a file if you can, if not send the url of the m3u so I can see it. Maybe the Host header is not being sent and the <hostname> is being used and maybe that is wrong.
karl. |
|
| Back to top |
|
 |
weirdorecords
Joined: 05 Oct 2010 Posts: 27
|
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Sun Dec 23, 2012 3:14 am Post subject: |
|
|
the m3u looks ok, I can only guess that the m3u request is being sent without a Host header, so icecast has to assume the <hostname> setting which in your case is set to localhost, which in turn is invalid to use for a listener
This is why it is always best to set <hostname> to some valid IP or DNS name that your listeners can use, localhost is only valid for the machine you run icecast on, in your case, the IP is valid.
karl. |
|
| Back to top |
|
 |
weirdorecords
Joined: 05 Oct 2010 Posts: 27
|
Posted: Sun Dec 23, 2012 5:43 pm Post subject: |
|
|
Thanks very much for taking a look at it.
I took your advice & found this: If I change my hostname in the config file to either 66.30.116.130 I get exactly the same result as when the hostname is localhost- buffering for a while and then a lost connection.
I tried changing the edcast hostname to 127.0.0.1 instead of localhost, same result. Although now, I notice that Icecast will briefly tell me there are 2 listeners before the connection is lost. _________________ thanks much!
Angela
Weirdo Records |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Sun Dec 23, 2012 11:03 pm Post subject: |
|
|
so then you are now back to the error log and finding out what is really happening to the listener connection. I can connect and maintain a connection using the url although it's a bit odd to have a single channel for a 128k stream.
karl |
|
| Back to top |
|
 |
weirdorecords
Joined: 05 Oct 2010 Posts: 27
|
Posted: Wed Dec 26, 2012 11:54 pm Post subject: |
|
|
Thanks for your continued help!
So now my problem is that I have no error or admin logs. I've spent the day googling around trying to figure out why that might be. Not many people seem to have had this problem.
So far I've tried changing the path in <logdir>, making sure the Icecast folders on my desktop were not set to read only, setting up blank access & error text files in the log directory, and adding in a line of <pidfile>./icecast.pid</pidfile>
Nothing yet... _________________ thanks much!
Angela
Weirdo Records |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Thu Dec 27, 2012 9:41 am Post subject: |
|
|
pick something simple, create a directory if you have to, this is not a difficult thing, logdir of /tmp then a log level of at least 3 and no chroot. On linux, if you want to see the open file for logging, look at the output of lsof -np `pidof icecast`
karl. |
|
| Back to top |
|
 |
weirdorecords
Joined: 05 Oct 2010 Posts: 27
|
Posted: Fri Dec 28, 2012 5:32 pm Post subject: |
|
|
Finally got the logging working. I had an old installation of Icecast floating around that I think was causing the trouble. So, now I have some error logs to show you. Logs show that metadata is being sent properly.
Here's what happens when I try to connect:
[2012-12-28 12:28:00] DBUG auth/auth.c Added client to /stream
[2012-12-28 12:28:00] DBUG auth/auth.c client authenticated, passed to source
[2012-12-28 12:28:00] DBUG source/source.c Client added
[2012-12-28 12:28:00] INFO source/source.c listener count on /stream now 1
[2012-12-28 12:28:00] DBUG stats/stats.c update node clients (2)
[2012-12-28 12:28:00] DBUG stats/stats.c update node connections (3)
[2012-12-28 12:28:00] DBUG stats/stats.c update node client_connections (2)
[2012-12-28 12:28:00] DBUG stats/stats.c update node listener_peak (1)
[2012-12-28 12:28:00] DBUG stats/stats.c update node listeners (1)
[2012-12-28 12:28:00] DBUG format/format.c processing pending client headers
[2012-12-28 12:28:01] DBUG stats/stats.c update node listeners (1)
[2012-12-28 12:28:01] DBUG stats/stats.c update node listener_connections (1)
[2012-12-28 12:28:01] DBUG client/client.c Client connection died
[2012-12-28 12:28:01] DBUG source/source.c Client removed
[2012-12-28 12:28:01] INFO source/source.c listener count on /stream now 0
[2012-12-28 12:28:01] DBUG stats/stats.c update node clients (1)
[2012-12-28 12:28:01] DBUG stats/stats.c update node listeners (0)
[2012-12-28 12:28:01] DBUG stats/stats.c update node listeners (0)
[2012-12-28 12:28:02] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-28 12:28:02] DBUG auth/auth.c Added client to /stream
[2012-12-28 12:28:02] DBUG auth/auth.c client authenticated, passed to source
[2012-12-28 12:28:02] DBUG source/source.c Client added
[2012-12-28 12:28:02] INFO source/source.c listener count on /stream now 1
[2012-12-28 12:28:02] DBUG stats/stats.c update node clients (2)
[2012-12-28 12:28:02] DBUG stats/stats.c update node connections (4)
[2012-12-28 12:28:02] DBUG stats/stats.c update node client_connections (3)
[2012-12-28 12:28:02] DBUG stats/stats.c update node listeners (1)
[2012-12-28 12:28:02] DBUG format/format.c processing pending client headers
[2012-12-28 12:28:02] DBUG stats/stats.c update node listeners (1)
[2012-12-28 12:28:02] DBUG stats/stats.c update node listener_connections (2)
[2012-12-28 12:28:05] DBUG stats/stats.c update node total_bytes_read (1681866)
[2012-12-28 12:28:05] DBUG stats/stats.c update node total_bytes_sent (115586)
[2012-12-28 12:28:06] DBUG auth/auth.c max on /stream is -1 (cur 1)
[2012-12-28 12:28:06] DBUG auth/auth.c Added client to /stream
[2012-12-28 12:28:06] DBUG auth/auth.c client authenticated, passed to source
[2012-12-28 12:28:06] DBUG source/source.c Client added
[2012-12-28 12:28:06] INFO source/source.c listener count on /stream now 2
[2012-12-28 12:28:06] DBUG format/format.c processing pending client headers
[2012-12-28 12:28:07] DBUG stats/stats.c update node clients (3)
[2012-12-28 12:28:07] DBUG stats/stats.c update node connections (5)
[2012-12-28 12:28:07] DBUG stats/stats.c update node client_connections (4)
[2012-12-28 12:28:07] DBUG stats/stats.c update node listener_peak (2)
[2012-12-28 12:28:07] DBUG stats/stats.c update node listeners (2)
[2012-12-28 12:28:07] DBUG stats/stats.c update node listeners (2)
[2012-12-28 12:28:07] DBUG stats/stats.c update node listener_connections (3)
[2012-12-28 12:28:07] DBUG client/client.c Client connection died
[2012-12-28 12:28:07] DBUG source/source.c Client removed _________________ thanks much!
Angela
Weirdo Records |
|
| Back to top |
|
 |
karlH Code Warrior

Joined: 13 Jun 2005 Posts: 5476 Location: UK
|
Posted: Sat Dec 29, 2012 10:00 am Post subject: |
|
|
the question was about m3u requests not working. Clear the logs (access and error), and without a stream running try to request an m3u from the problem case (I've just tried it here and it is still working). Then stop the icecast and check both logs to see what appears. You should see an entry in the access log for the m3u even if the stream itself is not requested. then check the error log
karl. |
|
| Back to top |
|
 |
weirdorecords
Joined: 05 Oct 2010 Posts: 27
|
Posted: Sat Dec 29, 2012 7:55 pm Post subject: |
|
|
Thanks again for the continued advice.
So, I stopped Winamp so that there's no stream. Stopped Icecast & deleted everything in the access & error logs. Restarted Icecast, and then tried to open the m3u address outside the LAN. I got buffering, but the connection never dropped. I waited a few minutes, and then started winamp, at which point the connection dropped.
Best guess I've got is that the problem is 'socket timeout', which is what the error log shows as the reason the source gets disconnected.
Here's the access log:
127.0.0.1 - - [29/Dec/2012:14:40:23 -0500] "GET /admin/metadata HTTP/1.0" 200 177 "-" "(Mozilla Compatible)" 1
127.0.0.1 - - [29/Dec/2012:14:40:34 -0500] "SOURCE /stream ICE/1.0" 200 19 "-" "-" 12
208.54.87.224 - - [29/Dec/2012:14:40:34 -0500] "GET /stream HTTP/1.0" 200 350 "-" "LeadappsAndroidRadio/2.0" 5
208.54.87.224 - - [29/Dec/2012:14:40:34 -0500] "GET /stream HTTP/1.0" 200 350 "-" "LeadappsAndroidRadio/2.0" 2
208.54.87.224 - - [29/Dec/2012:14:40:50 -0500] "GET /stream HTTP/1.0" 404 106 "-" "LeadappsAndroidRadio/2.0" 0
208.54.87.224 - - [29/Dec/2012:14:41:25 -0500] "GET /stream HTTP/1.0" 404 106 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:41:59 -0500] "GET /stream HTTP/1.0" 404 106 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:42:33 -0500] "GET /stream HTTP/1.0" 404 106 "-" "LeadappsAndroidRadio/2.0" 0
208.54.87.224 - - [29/Dec/2012:14:43:08 -0500] "GET /stream HTTP/1.0" 404 106 "-" "LeadappsAndroidRadio/2.0" 0
208.54.87.224 - - [29/Dec/2012:14:43:42 -0500] "GET /stream HTTP/1.0" 404 106 "-" "LeadappsAndroidRadio/2.0" 0
208.54.87.224 - - [29/Dec/2012:14:44:17 -0500] "GET /stream HTTP/1.0" 404 106 "-" "LeadappsAndroidRadio/2.0" 1
127.0.0.1 - - [29/Dec/2012:14:44:37 -0500] "GET /admin/metadata HTTP/1.0" 200 177 "-" "(Mozilla Compatible)" 0
208.54.87.224 - - [29/Dec/2012:14:44:56 -0500] "GET /stream HTTP/1.0" 200 19999 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:44:57 -0500] "GET /stream HTTP/1.0" 200 151607 "-" "LeadappsAndroidRadio/2.0" 7
208.54.87.224 - - [29/Dec/2012:14:45:00 -0500] "GET /stream HTTP/1.0" 200 25599 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:45:06 -0500] "GET /stream HTTP/1.0" 200 22799 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:45:10 -0500] "GET /stream HTTP/1.0" 200 28399 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:45:14 -0500] "GET /stream HTTP/1.0" 200 26999 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:45:19 -0500] "GET /stream HTTP/1.0" 200 25599 "-" "LeadappsAndroidRadio/2.0" 3
208.54.87.224 - - [29/Dec/2012:14:45:23 -0500] "GET /stream HTTP/1.0" 200 26999 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:45:27 -0500] "GET /stream HTTP/1.0" 200 26999 "-" "LeadappsAndroidRadio/2.0" 2
208.54.87.224 - - [29/Dec/2012:14:45:30 -0500] "GET /stream HTTP/1.0" 200 28399 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:45:34 -0500] "GET /stream HTTP/1.0" 200 25599 "-" "LeadappsAndroidRadio/2.0" 1
208.54.87.224 - - [29/Dec/2012:14:45:37 -0500] "GET /stream HTTP/1.0" 200 26999 "-" "LeadappsAndroidRadio/2.0" 1
127.0.0.1 - - [29/Dec/2012:14:45:46 -0500] "SOURCE /stream ICE/1.0" 200 19 "-" "-" 69
And here's the error log:
[2012-12-29 14:40:19] INFO fserve/fserve.c file serving thread started
[2012-12-29 14:40:19] INFO main/main.c Icecast 2.3.2 server started
[2012-12-29 14:40:19] DBUG yp/yp.c Updating YP configuration
[2012-12-29 14:40:19] INFO yp/yp.c Adding new YP server "http://dir.xiph.org/cgi-bin/yp-cgi" (timeout 6s, default interval 30s)
[2012-12-29 14:40:19] INFO connection/connection.c No SSL capability
[2012-12-29 14:40:19] INFO yp/yp.c YP update thread started
[2012-12-29 14:40:19] DBUG yp/yp.c Add pending yps http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:40:20] DBUG slave/slave.c checking master stream list
[2012-12-29 14:40:22] INFO connection/connection.c Source logging in at mountpoint "/stream"
[2012-12-29 14:40:22] DBUG connection/connection.c sources count is 0
[2012-12-29 14:40:22] DBUG source/source.c Applying mount information for "/stream"
[2012-12-29 14:40:22] DBUG format-mp3/format_mp3.c sending metadata interval 16000
[2012-12-29 14:40:22] DBUG format-mp3/format_mp3.c charset ISO8859-1
[2012-12-29 14:40:22] DBUG source/source.c YP changed to 1
[2012-12-29 14:40:22] DBUG yp/yp.c Adding /stream to http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:40:22] DBUG source/source.c public set to 1
[2012-12-29 14:40:22] DBUG source/source.c max listeners to -1
[2012-12-29 14:40:22] DBUG source/source.c queue size to 512000
[2012-12-29 14:40:22] DBUG source/source.c burst size to 65536
[2012-12-29 14:40:22] DBUG source/source.c source timeout to 10
[2012-12-29 14:40:22] DBUG source/source.c fallback_when_full to 0
[2012-12-29 14:40:22] DBUG connection/connection.c source is ready to start
[2012-12-29 14:40:22] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:40:22] DBUG admin/admin.c Admin request (/admin/metadata)
[2012-12-29 14:40:22] DBUG admin/admin.c Got command (metadata)
[2012-12-29 14:40:22] INFO admin/admin.c Received admin command metadata on mount "/stream"
[2012-12-29 14:40:22] DBUG admin/admin.c Got metadata update request
[2012-12-29 14:40:22] INFO admin/admin.c Metadata on mountpoint /stream changed to "Francis Lai - Emmanuelle II "
[2012-12-29 14:40:22] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:40:23] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:40:23] DBUG stats/stats.c update node connections (1)
[2012-12-29 14:40:23] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:40:23] DBUG stats/stats.c update node connections (2)
[2012-12-29 14:40:23] DBUG stats/stats.c update node sources (1)
[2012-12-29 14:40:23] DBUG stats/stats.c new source stat /stream
[2012-12-29 14:40:23] DBUG yp/yp.c 1 YP entries added to http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:40:23] DBUG stats/stats.c new node listenurl (http://66.30.116.130:8001/stream)
[2012-12-29 14:40:23] DBUG stats/stats.c new node listener_peak (0)
[2012-12-29 14:40:23] DBUG stats/stats.c new node public (1)
[2012-12-29 14:40:23] DBUG stats/stats.c new node server_name (Weirdo Records Radio)
[2012-12-29 14:40:23] DBUG stats/stats.c new node server_description (only the screwiest)
[2012-12-29 14:40:23] DBUG stats/stats.c new node server_url (66.30.116.130:8001)
[2012-12-29 14:40:23] DBUG stats/stats.c new node genre (Experimental)
[2012-12-29 14:40:23] DBUG stats/stats.c new node bitrate (128)
[2012-12-29 14:40:23] DBUG stats/stats.c new node server_type (audio/mpeg)
[2012-12-29 14:40:23] DBUG stats/stats.c new node max_listeners (unlimited)
[2012-12-29 14:40:23] DBUG stats/stats.c update node client_connections (1)
[2012-12-29 14:40:23] DBUG source/source.c Source creation complete
[2012-12-29 14:40:23] DBUG stats/stats.c new node source_ip (127.0.0.1)
[2012-12-29 14:40:23] DBUG stats/stats.c update node source_client_connections (1)
[2012-12-29 14:40:23] DBUG stats/stats.c new node listeners (0)
[2012-12-29 14:40:23] DBUG stats/stats.c new node ice-samplerate (44100)
[2012-12-29 14:40:23] DBUG stats/stats.c new node ice-bitrate (128)
[2012-12-29 14:40:23] DBUG stats/stats.c new node ice-channels (1)
[2012-12-29 14:40:23] DBUG stats/stats.c new node audio_info (ice-samplerate=44100;ice-bitrate=128;ice-channels=1)
[2012-12-29 14:40:23] DBUG stats/stats.c update node listenurl (http://66.30.116.130:8001/stream)
[2012-12-29 14:40:23] DBUG stats/stats.c update node source_total_connections (1)
[2012-12-29 14:40:23] DBUG stats/stats.c new node slow_listeners (0)
[2012-12-29 14:40:23] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:40:23] DBUG stats/stats.c update node listener_peak (0)
[2012-12-29 14:40:23] DBUG stats/stats.c new node stream_start (Sat, 29 Dec 2012 14:40:23 Eastern Standard Time)
[2012-12-29 14:40:23] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:40:23] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:40:23] DBUG stats/stats.c new node total_bytes_read (0)
[2012-12-29 14:40:23] DBUG stats/stats.c new node total_bytes_sent (0)
[2012-12-29 14:40:23] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:40:28] DBUG stats/stats.c update node total_bytes_read (0)
[2012-12-29 14:40:28] DBUG stats/stats.c update node total_bytes_sent (0)
[2012-12-29 14:40:29] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:40:29] DBUG stats/stats.c update node connections (3)
[2012-12-29 14:40:29] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:40:29] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:40:29] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:40:29] DBUG source/source.c Client added
[2012-12-29 14:40:29] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:40:30] DBUG stats/stats.c update node client_connections (2)
[2012-12-29 14:40:30] DBUG stats/stats.c update node listener_peak (1)
[2012-12-29 14:40:30] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:40:30] DBUG format/format.c processing pending client headers
[2012-12-29 14:40:30] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:40:30] DBUG stats/stats.c update node listener_connections (1)
[2012-12-29 14:40:32] DBUG auth/auth.c max on /stream is -1 (cur 1)
[2012-12-29 14:40:32] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:40:32] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:40:32] DBUG source/source.c Client added
[2012-12-29 14:40:32] INFO source/source.c listener count on /stream now 2
[2012-12-29 14:40:32] DBUG stats/stats.c update node clients (3)
[2012-12-29 14:40:32] DBUG stats/stats.c update node connections (4)
[2012-12-29 14:40:32] DBUG stats/stats.c update node client_connections (3)
[2012-12-29 14:40:32] DBUG stats/stats.c update node listener_peak (2)
[2012-12-29 14:40:32] DBUG stats/stats.c update node listeners (2)
[2012-12-29 14:40:32] DBUG format/format.c processing pending client headers
[2012-12-29 14:40:33] DBUG stats/stats.c update node listeners (2)
[2012-12-29 14:40:33] DBUG stats/stats.c update node listener_connections (2)
[2012-12-29 14:40:33] DBUG stats/stats.c update node total_bytes_read (0)
[2012-12-29 14:40:33] DBUG stats/stats.c update node total_bytes_sent (700)
[2012-12-29 14:40:34] DBUG source/source.c last 1356810023, timeout 10, now 1356810034
[2012-12-29 14:40:34] WARN source/source.c Disconnecting source due to socket timeout
[2012-12-29 14:40:34] INFO source/source.c Source "/stream" exiting
[2012-12-29 14:40:34] DBUG source/source.c clearing source "/stream"
[2012-12-29 14:40:34] DBUG source/source.c freeing source "/stream"
[2012-12-29 14:40:34] DBUG yp/yp.c release /stream on YP http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:40:34] DBUG yp/yp.c removed /stream from YP server http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:40:34] DBUG stats/stats.c delete source node /stream
[2012-12-29 14:40:34] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:40:34] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:40:34] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:40:34] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:40:34] DBUG stats/stats.c update node sources (0)
[2012-12-29 14:40:50] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:40:50] DBUG stats/stats.c update node connections (5)
[2012-12-29 14:40:50] INFO fserve/fserve.c checking for file /stream (./web/stream)
[2012-12-29 14:40:50] WARN fserve/fserve.c req for file "./web/stream" No such file or directory
[2012-12-29 14:40:50] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:40:51] DBUG stats/stats.c update node client_connections (4)
[2012-12-29 14:40:51] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:41:24] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:41:24] DBUG stats/stats.c update node connections (6)
[2012-12-29 14:41:24] INFO fserve/fserve.c checking for file /stream (./web/stream)
[2012-12-29 14:41:24] WARN fserve/fserve.c req for file "./web/stream" No such file or directory
[2012-12-29 14:41:24] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:41:25] DBUG stats/stats.c update node client_connections (5)
[2012-12-29 14:41:25] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:41:59] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:41:59] DBUG stats/stats.c update node connections (7)
[2012-12-29 14:41:59] INFO fserve/fserve.c checking for file /stream (./web/stream)
[2012-12-29 14:41:59] WARN fserve/fserve.c req for file "./web/stream" No such file or directory
[2012-12-29 14:41:59] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:41:59] DBUG stats/stats.c update node client_connections (6)
[2012-12-29 14:41:59] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:42:20] DBUG slave/slave.c checking master stream list
[2012-12-29 14:42:33] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:42:33] DBUG stats/stats.c update node connections (
[2012-12-29 14:42:33] INFO fserve/fserve.c checking for file /stream (./web/stream)
[2012-12-29 14:42:33] WARN fserve/fserve.c req for file "./web/stream" No such file or directory
[2012-12-29 14:42:33] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:42:33] DBUG stats/stats.c update node client_connections (7)
[2012-12-29 14:42:33] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:43:08] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:43:08] DBUG stats/stats.c update node connections (9)
[2012-12-29 14:43:08] INFO fserve/fserve.c checking for file /stream (./web/stream)
[2012-12-29 14:43:08] WARN fserve/fserve.c req for file "./web/stream" No such file or directory
[2012-12-29 14:43:08] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:43:08] DBUG stats/stats.c update node client_connections (
[2012-12-29 14:43:08] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:43:42] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:43:42] DBUG stats/stats.c update node connections (10)
[2012-12-29 14:43:42] INFO fserve/fserve.c checking for file /stream (./web/stream)
[2012-12-29 14:43:42] WARN fserve/fserve.c req for file "./web/stream" No such file or directory
[2012-12-29 14:43:42] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:43:42] DBUG stats/stats.c update node client_connections (9)
[2012-12-29 14:43:42] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:44:16] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:44:16] DBUG stats/stats.c update node connections (11)
[2012-12-29 14:44:17] INFO fserve/fserve.c checking for file /stream (./web/stream)
[2012-12-29 14:44:17] WARN fserve/fserve.c req for file "./web/stream" No such file or directory
[2012-12-29 14:44:17] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:44:17] DBUG stats/stats.c update node client_connections (10)
[2012-12-29 14:44:17] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:44:20] DBUG slave/slave.c checking master stream list
[2012-12-29 14:44:37] INFO connection/connection.c Source logging in at mountpoint "/stream"
[2012-12-29 14:44:37] DBUG connection/connection.c sources count is 0
[2012-12-29 14:44:37] DBUG source/source.c Applying mount information for "/stream"
[2012-12-29 14:44:37] DBUG format-mp3/format_mp3.c sending metadata interval 16000
[2012-12-29 14:44:37] DBUG format-mp3/format_mp3.c charset ISO8859-1
[2012-12-29 14:44:37] DBUG source/source.c YP changed to 1
[2012-12-29 14:44:37] DBUG yp/yp.c Adding /stream to http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:44:37] DBUG source/source.c public set to 1
[2012-12-29 14:44:37] DBUG source/source.c max listeners to -1
[2012-12-29 14:44:37] DBUG source/source.c queue size to 512000
[2012-12-29 14:44:37] DBUG source/source.c burst size to 65536
[2012-12-29 14:44:37] DBUG source/source.c source timeout to 10
[2012-12-29 14:44:37] DBUG source/source.c fallback_when_full to 0
[2012-12-29 14:44:37] DBUG connection/connection.c source is ready to start
[2012-12-29 14:44:37] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:44:37] DBUG admin/admin.c Admin request (/admin/metadata)
[2012-12-29 14:44:37] DBUG admin/admin.c Got command (metadata)
[2012-12-29 14:44:37] INFO admin/admin.c Received admin command metadata on mount "/stream"
[2012-12-29 14:44:37] DBUG admin/admin.c Got metadata update request
[2012-12-29 14:44:37] INFO admin/admin.c Metadata on mountpoint /stream changed to "Francis Lai - Emmanuelle II "
[2012-12-29 14:44:37] DBUG fserve/fserve.c Adding client to file serving engine
[2012-12-29 14:44:37] DBUG yp/yp.c 1 YP entries added to http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:44:37] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:44:37] DBUG stats/stats.c update node connections (12)
[2012-12-29 14:44:37] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:44:37] DBUG stats/stats.c update node connections (13)
[2012-12-29 14:44:37] DBUG stats/stats.c update node sources (1)
[2012-12-29 14:44:37] DBUG stats/stats.c new source stat /stream
[2012-12-29 14:44:37] DBUG stats/stats.c new node listenurl (http://66.30.116.130:8001/stream)
[2012-12-29 14:44:37] DBUG stats/stats.c new node listener_peak (0)
[2012-12-29 14:44:37] DBUG stats/stats.c new node public (1)
[2012-12-29 14:44:37] DBUG stats/stats.c new node server_name (Weirdo Records Radio)
[2012-12-29 14:44:37] DBUG stats/stats.c new node server_description (only the screwiest)
[2012-12-29 14:44:37] DBUG stats/stats.c new node server_url (66.30.116.130:8001)
[2012-12-29 14:44:37] DBUG stats/stats.c new node genre (Experimental)
[2012-12-29 14:44:37] DBUG stats/stats.c new node bitrate (128)
[2012-12-29 14:44:37] DBUG stats/stats.c new node server_type (audio/mpeg)
[2012-12-29 14:44:37] DBUG stats/stats.c new node max_listeners (unlimited)
[2012-12-29 14:44:37] DBUG stats/stats.c update node client_connections (11)
[2012-12-29 14:44:37] DBUG source/source.c Source creation complete
[2012-12-29 14:44:37] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:44:37] DBUG stats/stats.c new node source_ip (127.0.0.1)
[2012-12-29 14:44:37] DBUG stats/stats.c update node source_client_connections (2)
[2012-12-29 14:44:37] DBUG stats/stats.c new node listeners (0)
[2012-12-29 14:44:37] DBUG stats/stats.c new node ice-samplerate (44100)
[2012-12-29 14:44:37] DBUG stats/stats.c new node ice-bitrate (128)
[2012-12-29 14:44:37] DBUG stats/stats.c new node ice-channels (1)
[2012-12-29 14:44:37] DBUG stats/stats.c new node audio_info (ice-samplerate=44100;ice-bitrate=128;ice-channels=1)
[2012-12-29 14:44:37] DBUG stats/stats.c update node listenurl (http://66.30.116.130:8001/stream)
[2012-12-29 14:44:37] DBUG stats/stats.c update node source_total_connections (2)
[2012-12-29 14:44:37] DBUG stats/stats.c new node slow_listeners (0)
[2012-12-29 14:44:37] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:44:37] DBUG stats/stats.c update node listener_peak (0)
[2012-12-29 14:44:37] DBUG stats/stats.c new node stream_start (Sat, 29 Dec 2012 14:44:37 Eastern Standard Time)
[2012-12-29 14:44:37] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:44:37] DBUG stats/stats.c new node total_bytes_read (0)
[2012-12-29 14:44:37] DBUG stats/stats.c new node total_bytes_sent (0)
[2012-12-29 14:44:37] DBUG stats/stats.c new node title (Francis Lai - Emmanuelle II )
[2012-12-29 14:44:37] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:44:42] DBUG stats/stats.c update node total_bytes_read (74200)
[2012-12-29 14:44:42] DBUG stats/stats.c update node total_bytes_sent (0)
[2012-12-29 14:44:47] DBUG stats/stats.c update node total_bytes_read (154000)
[2012-12-29 14:44:47] DBUG stats/stats.c update node total_bytes_sent (0)
[2012-12-29 14:44:51] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:44:51] DBUG stats/stats.c update node connections (14)
[2012-12-29 14:44:51] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:44:51] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:44:51] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:44:51] DBUG source/source.c Client added
[2012-12-29 14:44:51] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:44:51] DBUG stats/stats.c update node client_connections (12)
[2012-12-29 14:44:51] DBUG stats/stats.c update node listener_peak (1)
[2012-12-29 14:44:51] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:44:51] DBUG format/format.c processing pending client headers
[2012-12-29 14:44:51] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:44:51] DBUG stats/stats.c update node listener_connections (3)
[2012-12-29 14:44:52] DBUG stats/stats.c update node total_bytes_read (233800)
[2012-12-29 14:44:52] DBUG stats/stats.c update node total_bytes_sent (8750)
[2012-12-29 14:44:56] DBUG auth/auth.c max on /stream is -1 (cur 1)
[2012-12-29 14:44:56] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:44:56] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:44:56] DBUG source/source.c Client added
[2012-12-29 14:44:56] INFO source/source.c listener count on /stream now 2
[2012-12-29 14:44:56] DBUG format/format.c processing pending client headers
[2012-12-29 14:44:56] DBUG stats/stats.c update node clients (3)
[2012-12-29 14:44:56] DBUG stats/stats.c update node connections (15)
[2012-12-29 14:44:56] DBUG stats/stats.c update node client_connections (13)
[2012-12-29 14:44:56] DBUG stats/stats.c update node listener_peak (2)
[2012-12-29 14:44:56] DBUG stats/stats.c update node listeners (2)
[2012-12-29 14:44:56] DBUG stats/stats.c update node listeners (2)
[2012-12-29 14:44:56] DBUG stats/stats.c update node listener_connections (4)
[2012-12-29 14:44:56] DBUG client/client.c Client connection died
[2012-12-29 14:44:56] DBUG source/source.c Client removed
[2012-12-29 14:44:56] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:44:56] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:44:56] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:44:56] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:44:57] DBUG client/client.c Client connection died
[2012-12-29 14:44:57] DBUG source/source.c Client removed
[2012-12-29 14:44:57] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:44:57] DBUG stats/stats.c update node total_bytes_read (314304)
[2012-12-29 14:44:57] DBUG stats/stats.c update node total_bytes_sent (171606)
[2012-12-29 14:44:57] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:44:57] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:44:57] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:44:59] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:44:59] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:44:59] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:44:59] DBUG source/source.c Client added
[2012-12-29 14:44:59] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:44:59] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:44:59] DBUG stats/stats.c update node connections (16)
[2012-12-29 14:44:59] DBUG stats/stats.c update node client_connections (14)
[2012-12-29 14:44:59] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:44:59] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:00] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:00] DBUG stats/stats.c update node listener_connections (5)
[2012-12-29 14:45:00] DBUG client/client.c Client connection died
[2012-12-29 14:45:00] DBUG source/source.c Client removed
[2012-12-29 14:45:00] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:00] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:00] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:00] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:02] DBUG stats/stats.c update node total_bytes_read (394134)
[2012-12-29 14:45:02] DBUG stats/stats.c update node total_bytes_sent (197205)
[2012-12-29 14:45:05] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:05] DBUG stats/stats.c update node connections (17)
[2012-12-29 14:45:05] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:05] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:05] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:05] DBUG source/source.c Client added
[2012-12-29 14:45:05] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:05] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:05] DBUG stats/stats.c update node client_connections (15)
[2012-12-29 14:45:05] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:05] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:05] DBUG stats/stats.c update node listener_connections (6)
[2012-12-29 14:45:06] DBUG client/client.c Client connection died
[2012-12-29 14:45:06] DBUG source/source.c Client removed
[2012-12-29 14:45:06] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:07] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:07] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:07] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:07] DBUG stats/stats.c update node total_bytes_read (474382)
[2012-12-29 14:45:07] DBUG stats/stats.c update node total_bytes_sent (220004)
[2012-12-29 14:45:09] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:09] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:09] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:09] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:09] DBUG stats/stats.c update node connections (1
[2012-12-29 14:45:09] DBUG stats/stats.c update node client_connections (16)
[2012-12-29 14:45:09] DBUG source/source.c Client added
[2012-12-29 14:45:09] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:09] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:10] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:10] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:10] DBUG stats/stats.c update node listener_connections (7)
[2012-12-29 14:45:10] DBUG client/client.c Client connection died
[2012-12-29 14:45:10] DBUG source/source.c Client removed
[2012-12-29 14:45:10] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:10] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:10] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:10] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:12] DBUG stats/stats.c update node total_bytes_read (554212)
[2012-12-29 14:45:12] DBUG stats/stats.c update node total_bytes_sent (248403)
[2012-12-29 14:45:13] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:13] DBUG stats/stats.c update node connections (19)
[2012-12-29 14:45:13] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:13] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:13] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:13] DBUG source/source.c Client added
[2012-12-29 14:45:13] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:13] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:13] DBUG stats/stats.c update node client_connections (17)
[2012-12-29 14:45:13] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:13] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:13] DBUG stats/stats.c update node listener_connections (
[2012-12-29 14:45:14] DBUG client/client.c Client connection died
[2012-12-29 14:45:14] DBUG source/source.c Client removed
[2012-12-29 14:45:14] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:14] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:14] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:14] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:17] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:17] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:17] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:17] DBUG source/source.c Client added
[2012-12-29 14:45:17] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:17] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:17] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:17] DBUG stats/stats.c update node connections (20)
[2012-12-29 14:45:17] DBUG stats/stats.c update node total_bytes_read (634200)
[2012-12-29 14:45:17] DBUG stats/stats.c update node total_bytes_sent (275402)
[2012-12-29 14:45:17] DBUG stats/stats.c update node client_connections (1
[2012-12-29 14:45:17] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:17] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:17] DBUG stats/stats.c update node listener_connections (9)
[2012-12-29 14:45:19] DBUG client/client.c Client connection died
[2012-12-29 14:45:19] DBUG source/source.c Client removed
[2012-12-29 14:45:19] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:19] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:19] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:19] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:22] DBUG stats/stats.c update node total_bytes_read (714000)
[2012-12-29 14:45:22] DBUG stats/stats.c update node total_bytes_sent (301001)
[2012-12-29 14:45:22] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:22] DBUG stats/stats.c update node connections (21)
[2012-12-29 14:45:22] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:22] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:22] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:22] DBUG source/source.c Client added
[2012-12-29 14:45:22] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:22] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:22] DBUG stats/stats.c update node client_connections (19)
[2012-12-29 14:45:22] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:22] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:22] DBUG stats/stats.c update node listener_connections (10)
[2012-12-29 14:45:23] DBUG client/client.c Client connection died
[2012-12-29 14:45:23] DBUG source/source.c Client removed
[2012-12-29 14:45:23] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:23] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:23] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:23] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:26] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:26] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:26] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:26] DBUG source/source.c Client added
[2012-12-29 14:45:26] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:26] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:26] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:26] DBUG stats/stats.c update node connections (22)
[2012-12-29 14:45:26] DBUG stats/stats.c update node client_connections (20)
[2012-12-29 14:45:26] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:26] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:26] DBUG stats/stats.c update node listener_connections (11)
[2012-12-29 14:45:27] DBUG client/client.c Client connection died
[2012-12-29 14:45:27] DBUG source/source.c Client removed
[2012-12-29 14:45:27] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:27] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:27] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:27] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:27] DBUG stats/stats.c update node total_bytes_read (793800)
[2012-12-29 14:45:27] DBUG stats/stats.c update node total_bytes_sent (354999)
[2012-12-29 14:45:29] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:29] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:29] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:29] DBUG source/source.c Client added
[2012-12-29 14:45:29] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:29] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:29] DBUG stats/stats.c update node connections (23)
[2012-12-29 14:45:29] DBUG stats/stats.c update node client_connections (21)
[2012-12-29 14:45:29] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:29] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:30] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:30] DBUG stats/stats.c update node listener_connections (12)
[2012-12-29 14:45:30] DBUG client/client.c Client connection died
[2012-12-29 14:45:30] DBUG source/source.c Client removed
[2012-12-29 14:45:30] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:30] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:30] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:30] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:32] DBUG stats/stats.c update node total_bytes_read (874369)
[2012-12-29 14:45:32] DBUG stats/stats.c update node total_bytes_sent (383398)
[2012-12-29 14:45:33] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:33] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:33] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:33] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:33] DBUG stats/stats.c update node connections (24)
[2012-12-29 14:45:33] DBUG stats/stats.c update node client_connections (22)
[2012-12-29 14:45:33] DBUG source/source.c Client added
[2012-12-29 14:45:33] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:33] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:33] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:33] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:33] DBUG stats/stats.c update node listener_connections (13)
[2012-12-29 14:45:34] DBUG client/client.c Client connection died
[2012-12-29 14:45:34] DBUG source/source.c Client removed
[2012-12-29 14:45:34] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:34] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:34] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:34] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:37] DBUG stats/stats.c update node clients (2)
[2012-12-29 14:45:37] DBUG stats/stats.c update node connections (25)
[2012-12-29 14:45:37] DBUG stats/stats.c update node total_bytes_read (954617)
[2012-12-29 14:45:37] DBUG stats/stats.c update node total_bytes_sent (408997)
[2012-12-29 14:45:37] DBUG auth/auth.c max on /stream is -1 (cur 0)
[2012-12-29 14:45:37] DBUG auth/auth.c Added client to /stream
[2012-12-29 14:45:37] DBUG auth/auth.c client authenticated, passed to source
[2012-12-29 14:45:37] DBUG source/source.c Client added
[2012-12-29 14:45:37] INFO source/source.c listener count on /stream now 1
[2012-12-29 14:45:37] DBUG format/format.c processing pending client headers
[2012-12-29 14:45:37] DBUG stats/stats.c update node client_connections (23)
[2012-12-29 14:45:37] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:37] DBUG stats/stats.c update node listeners (1)
[2012-12-29 14:45:37] DBUG stats/stats.c update node listener_connections (14)
[2012-12-29 14:45:37] DBUG yp/yp.c server touch interval is 242
[2012-12-29 14:45:37] DBUG yp/yp.c YP add at http://dir.xiph.org/cgi-bin/yp-cgi succeeded
[2012-12-29 14:45:37] DBUG client/client.c Client connection died
[2012-12-29 14:45:37] DBUG source/source.c Client removed
[2012-12-29 14:45:37] INFO source/source.c listener count on /stream now 0
[2012-12-29 14:45:37] DBUG stats/stats.c update node clients (1)
[2012-12-29 14:45:37] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:37] DBUG stats/stats.c update node listeners (0)
[2012-12-29 14:45:42] DBUG stats/stats.c new node yp_currently_playing (Francis Lai - Emmanuelle II )
[2012-12-29 14:45:42] DBUG stats/stats.c update node total_bytes_read (1034448)
[2012-12-29 14:45:42] DBUG stats/stats.c update node total_bytes_sent (435996)
[2012-12-29 14:45:42] DBUG yp/yp.c YP touch at http://dir.xiph.org/cgi-bin/yp-cgi succeeded
[2012-12-29 14:45:46] INFO source/source.c Source "/stream" exiting
[2012-12-29 14:45:46] DBUG source/source.c clearing source "/stream"
[2012-12-29 14:45:46] DBUG source/source.c freeing source "/stream"
[2012-12-29 14:45:46] DBUG yp/yp.c release /stream on YP http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:45:46] DBUG connection/connection.c Connection thread done
[2012-12-29 14:45:46] INFO main/main.c Shutting down
[2012-12-29 14:45:46] INFO yp/yp.c clearing up YP entry for /stream
[2012-12-29 14:45:46] INFO fserve/fserve.c file serving thread stopped
[2012-12-29 14:45:46] DBUG slave/slave.c waiting for slave thread
[2012-12-29 14:45:46] DBUG stats/stats.c delete source node /stream
[2012-12-29 14:45:46] DBUG stats/stats.c update node clients (0)
[2012-12-29 14:45:46] DBUG stats/stats.c update node sources (0)
[2012-12-29 14:45:46] DBUG yp/yp.c YP remove at http://dir.xiph.org/cgi-bin/yp-cgi succeeded
[2012-12-29 14:45:46] DBUG yp/yp.c removed /stream from YP server http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:45:47] INFO slave/slave.c shutting down current relays
[2012-12-29 14:45:47] INFO slave/slave.c Slave thread shutdown complete
[2012-12-29 14:45:47] INFO auth/auth.c Auth shutdown
[2012-12-29 14:45:47] DBUG yp/yp.c Removing YP server entry for http://dir.xiph.org/cgi-bin/yp-cgi
[2012-12-29 14:45:47] INFO yp/yp.c YP thread down
[2012-12-29 14:45:47] INFO stats/stats.c stats thread finished _________________ thanks much!
Angela
Weirdo Records |
|
| Back to top |
|
 |
DJ-Zath

Joined: 11 Feb 2009 Posts: 155 Location: Western Illinois - USA
|
Posted: Sun Dec 30, 2012 9:44 pm Post subject: |
|
|
out of curiosity,
are you using a decent router?
(AKA not one bought at Walmart!)
I recently had a similar problem- where I could NOT stream through a cheapo Netgear router that I purchased from Walmart.
no matter what I did, I could NOT get the thing to support a stream- even a 24k (dialup) one!
just a mention, I hope this helps..  _________________ -DjZ-
 |
|
| Back to top |
|
 |
|