NAME
Net::DPAP::Server - Provide a DPAP Server
SYNOPSIS
use POE;
use Net::DPAP::Server;
my $server = Net::DAAP::Server->new(
path => '/my/photo/album',
port => 666,
name => "My holiday snaps",
);
$poe_kernel->run;
DESCRIPTION
Net::DPAP::Server takes a directory of JPEG files and makes it available to iPhoto and work-alikes which can use the Digital Photo Access Protocol
METHODS
new
Creates a new dpap server, takes the following arguments
- path
-
A directory that will be scanned for *.jpeg files to share.
- name
-
The name of your DPAP share, will default to a combination of the module name, hostname, and process id.
- port
-
The port to listen on, will default to the default port, 8770.
CAVEATS
Currently only shares .jpeg files.
Doesn't support albums.
AUTHOR
Richard Clamp <richardc@unixbeard.net>
COPYRIGHT
Copyright 2004 Richard Clamp. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
Net::DPAP::Client