Hey all, while running Good Vibes Radio, it became necessary to know the number of listeners on the server. You can use this sub to make a program that rings a bell (though good luck getting the Shoutcast plugin to broadcast it), or display it in a webpage, such as at Good Vibes Cafe. It comes in handy. Just call the sub listeners with the port. You can also of course keep track of total listeners if you have several servers on different ports. Have fun. This works with the Shoutcast server. It assumes you have it on the localmachine i.e. localhost, modify as needed.
use strict;
use Net::HTTP;
sub listeners
{
my $port=shift;
#print "Initializing port $port\n";
my $http=Net::HTTP->new(Host=>"localhost",PeerPort=>$port);
$http->write_request('GET'=>'/7.html', 'User-Agent'=>'Mozilla/5.0');
#print "Reading in the HTML.\n";
my ($code,$mess,%h)=$http->read_response_headers;
my $buff;
my $n=$http->read_entity_body($buff,1024);
die "Cannot read the buffer. $!" unless defined $n;
my ($line) = $buff =~ /<body>(.+)<\/body>/;
my @sc=split(/,/,$line);
return $sc[0];
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.