1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
package URI::ws;
use strict;
use warnings;
our $VERSION = '5.34';
use parent 'URI::http';
1;
__END__
=head1 NAME
URI::ws - URI scheme for WebSocket Identifiers
=head1 SYNOPSIS
use URI::ws;
my $uri = URI->new('ws://example.com/');
=head1 DESCRIPTION
This module implements the C<ws:> URI scheme defined in L<RFC 6455|http://tools.ietf.org/html/rfc6455>.
=head1 SUBROUTINES/METHODS
This module inherits the behaviour of L<URI::http|URI::http>.
=head1 DIAGNOSTICS
See L<URI|URI>
=head1 CONFIGURATION AND ENVIRONMENT
See L<URI|URI#CONFIGURATION-VARIABLES> and L<URI|URI#ENVIRONMENT-VARIABLES>
=head1 DEPENDENCIES
None
=head1 INCOMPATIBILITIES
None reported
=head1 BUGS AND LIMITATIONS
See L<URI|URI#BUGS>
=head1 SEE ALSO
L<RFC 6455|http://tools.ietf.org/html/rfc6455>
=head1 AUTHOR
David Dick, C<< <ddick at cpan.org> >>
=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<http://dev.perl.org/licenses/> for more information.
|