Apache2::ModBT.3pm

Langue: en

Autres versions - même langue

Version: 2006-06-27 (ubuntu - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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().

$r->server->ModBT_Tracker()
Returns a tracker object that corresponds to the mod_bt tracker instance running on the current apache process. If the tracker is not enabled (``Tracker On'' is not set in httpd.conf), this will return "undef".

SEE ALSO

Net::BitTorrent::LibBTT, <http://www.crackerjack.net/mod_bt/>, <http://perl.apache.org/>

AUTHOR

Tyler 'Crackerjack' MacDonald, <tyler@yi.org> Copyright (C) 2006 by Tyler 'Crackerjack' MacDonald

This library is free software; you can redistribute it and/or modify it under the terms of the Apache License 2.x (<http://www.apache.org/licenses/LICENSE-2.0>).

POD ERRORS

Hey! The above document had some coding errors, which are explained below:
Around line 75:
You forgot a '=back' before '=head1'