Net::DAAP::Client::Auth - obsolete extension to Net::DAAP::Client


Net-DAAP-Client-Auth documentation Contained in the Net-DAAP-Client-Auth distribution.

Index


Code Index:

NAME

Top

Net::DAAP::Client::Auth - obsolete extension to Net::DAAP::Client

SYNOPSIS

Top

  See Net::DAAP::Client

DESCRIPTION

Top

Before the grand unification of Net::DAAP::Client and Net::DAAP::Client::Auth this distribution was a bag of slightly suspect hacks to force client validation into Net::DAAP::Client.

As of release 0.4 of Net::DAAP::Client this code has been integrated and into the mainline, and you should use that. This module is a mostly empty subclass to encourage you to upgrade and amend your scripts.

AUTHOR

Top

Richard Clamp <richardc@unixbeard.net>

COPYRIGHT

Top

SEE ALSO

Top

Net::DAAP::Client


Net-DAAP-Client-Auth documentation Contained in the Net-DAAP-Client-Auth distribution.

package Net::DAAP::Client::Auth;
use strict;
use Net::DAAP::Client 0.4;
use vars qw( $VERSION @ISA );
use Carp;
$VERSION = 1.21;
@ISA = qw( Net::DAAP::Client );

sub new {
    my $class = shift;
    carp "Net::DAAP::Client::Auth->new deprecated in favour of Net::DAAP::Client->new";
    $class->SUPER::new(@_);
}

1;
__END__