<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package URI::icap;

use strict;
use warnings;
use base qw(URI::http);

our $VERSION = '5.27';

sub default_port { return 1344 }

1;
__END__

=head1 NAME

URI::icap - URI scheme for ICAP Identifiers

=head1 VERSION

Version 5.20

=head1 SYNOPSIS

    use URI::icap;

    my $uri = URI-&gt;new('icap://icap-proxy.example.com/');

=head1 DESCRIPTION

This module implements the C&lt;icap:&gt; URI scheme defined in L&lt;RFC 3507|http://tools.ietf.org/html/rfc3507&gt;, for the L&lt;Internet Content Adaptation Protocol|https://en.wikipedia.org/wiki/Internet_Content_Adaptation_Protocol&gt;.

=head1 SUBROUTINES/METHODS

This module inherits the behaviour of L&lt;URI::http|URI::http&gt; and overrides the L&lt;default_port|URI#$uri-&gt;default_port&gt; method.

=head2 default_port

The default port for icap servers is 1344

=head1 DIAGNOSTICS

See L&lt;URI|URI&gt;

=head1 CONFIGURATION AND ENVIRONMENT

See L&lt;URI|URI#CONFIGURATION-VARIABLES&gt; and L&lt;URI|URI#ENVIRONMENT-VARIABLES&gt;

=head1 DEPENDENCIES

None

=head1 INCOMPATIBILITIES

None reported

=head1 BUGS AND LIMITATIONS

See L&lt;URI|URI#BUGS&gt;

=head1 SEE ALSO

L&lt;RFC 3507|http://tools.ietf.org/html/rfc3507&gt;

=head1 AUTHOR

David Dick, C&lt;&lt; &lt;ddick at cpan.org&gt; &gt;&gt;

=head1 LICENSE AND COPYRIGHT

Copyright 2016 David Dick.

This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.

See L&lt;http://dev.perl.org/licenses/&gt; for more information.
</pre></body></html>