NAME
URI::fasp - URI handler for Aspera's FASP protocol
SYNOPSIS
$fasp
->port;
# 97001
$fasp
->fasp_port;
# 33001
$fasp
->query_param(
'bwcap'
)
# 25000
# ...
$ssh
=
$fasp
->as_ssh;
# URI::ssh
$ssh
->port;
# 97001
DESCRIPTION
Aspera uses seperate control and a data connections. The control connection is a SSH session.
This class is a subclass of URI::ssh
and uses the URI::QueryParam
mixin.
METHODS
as_ssh
Return a URI::ssh
representation of the instance's control connection
port
The port used by the control connection, defaults to 22
fasp_port
The port used by the data connection, defaults to default_fasp_port
default_fasp_port
The default port used by the data connection, 33001
SEE ALSO
URI, URI::QueryParam, http://asperasoft.com
AUTHOR
Skye Shaw (sshaw AT lucas.cis.temple.edu)
LICENSE
Copyright (c) 2011 Skye Shaw. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.