Apache-HTTunnel

 view release on metacpan or  search on metacpan

Client/httunnel.pod  view on Meta::CPAN

Each section corresponds to a tunnel to be established. Below is the
description of all the valid configuration directives.


=head1 CONFIGURATION FILE DIRECTIVES

=over 4

=item local_addr = <hostname or ip address>

Local address to bind to. Default is 'localhost'.

=item local_port = <port nb.>

Local port number to bind to. This directive is mandatory.

=item protocol = <proto>

Protocol for the tunnelled connection. Default is 'tcp', possible values
are 'tcp and 'udp'.

=item remote_port = <port nb.>

Remote port number. This directive is mandatory.

Client/t/HTTunnel-Client.t  view on Meta::CPAN

		print STDERR "\nApache::HTTunnel server URL is $HTTunnel::Client::Test::URL\n" ;
	}

	plan(tests => 7 + $HTTunnel::Client::Test::ExtraTests) ;
}

if ($ENV{PERL_HTTUNNEL_TEST_JAVA}){
	print STDERR "\n" unless $HTTunnel::Client::Test ;
	print STDERR "Using Java client.\n" ;
	require Inline::Java ;
	Inline->bind(
		Java => 'blib/lib/HTTunnel/Client.java',
	) ;
}
else {
	require HTTunnel::Client ;
}
ok(1) ;

# Regular usage
my $hc = new HTTunnel::Client($HTTunnel::Client::Test::URL) ;



( run in 4.211 seconds using v1.01-cache-2.11-cpan-2398b32b56e )