NAME
Apache2::ModBT - mod_perl interface to mod_bt
SYNOPSIS
use Apache2::ModBT;
sub handler
{
my $r = shift;
my $tracker = $r->server->ModBT_Tracker();
print $tracker->num_peers, "\n";
foreach my $i ($tracker->Infohashes())
{
...
}
}
DESCRIPTION
This is a pole for perl.
The Apache2::ModBT module adds a method onto the Apache::Server object which returns the LibBTT Tracker object for the current mod_bt process. When manipulating a mod_bt tracker from within Apache2, you should use this method instead of calling Net::BitTorrent::LibBTT->new().
SEE ALSO
Net::BitTorrent::LibBTT, http://www.crackerjack.net/mod_bt/, http://perl.apache.org/
AUTHOR
Tyler 'Crackerjack' MacDonald, <tyler@yi.org>
COPYRIGHT AND LICENSE
Copyright (C) 2006 by Tyler 'Crackerjack' MacDonald
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available.