602
|
1 |
# Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
# All rights reserved.
|
|
3 |
# This component and the accompanying materials are made available
|
|
4 |
# under the terms of the License "Eclipse Public License v1.0"
|
|
5 |
# which accompanies this distribution, and is available
|
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
#
|
|
8 |
# Initial Contributors:
|
|
9 |
# Nokia Corporation - initial contribution.
|
|
10 |
#
|
|
11 |
# Contributors:
|
|
12 |
#
|
|
13 |
# Description:
|
|
14 |
#
|
|
15 |
#
|
|
16 |
# Description:
|
|
17 |
# RemoteSite::FTP::Proxy::Experimental.pm
|
|
18 |
#
|
|
19 |
|
|
20 |
package RemoteSite::FTP::Proxy::Experimental;
|
|
21 |
|
|
22 |
use strict;
|
|
23 |
|
|
24 |
use RemoteSite::FTP::Experimental;
|
|
25 |
use RemoteSite::FTP::Proxy;
|
|
26 |
use vars qw(@ISA);
|
|
27 |
@ISA=("RemoteSite::FTP::Experimental", "RemoteSite::FTP::Proxy");
|
|
28 |
|
|
29 |
sub Connect {
|
|
30 |
my $self = shift;
|
|
31 |
$self->RemoteSite::FTP::Proxy::Connect();
|
|
32 |
}
|
|
33 |
|
|
34 |
sub DirList {
|
|
35 |
my $self = shift;
|
|
36 |
$self->RemoteSite::FTP::Experimental::DirList();
|
|
37 |
}
|
|
38 |
|
|
39 |
1;
|
|
40 |
|
|
41 |
=head1 NAME
|
|
42 |
|
|
43 |
RemoteSite::FTP::Experimental::Proxy.pm - Access a remote FTP site.
|
|
44 |
|
|
45 |
=head1 DESCRIPTION
|
|
46 |
|
|
47 |
This class differs from C<RemoteSite::FTP::Proxy> only in using a different mechanism for listing the contents of directories on FTP sites.
|
|
48 |
|
|
49 |
=head1 KNOWN BUGS
|
|
50 |
|
|
51 |
None
|
|
52 |
|
|
53 |
=head1 COPYRIGHT
|
|
54 |
|
|
55 |
Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
56 |
All rights reserved.
|
|
57 |
This component and the accompanying materials are made available
|
|
58 |
under the terms of the License "Eclipse Public License v1.0"
|
|
59 |
which accompanies this distribution, and is available
|
|
60 |
at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
61 |
|
|
62 |
Initial Contributors:
|
|
63 |
Nokia Corporation - initial contribution.
|
|
64 |
|
|
65 |
Contributors:
|
|
66 |
|
|
67 |
Description:
|
|
68 |
|
|
69 |
|
|
70 |
=cut
|