NAME
URI::ws_Punix - URI for ws+unix
SYNOPSIS
use
URI;
my
$uri
=new URI(
$url
);
# will output: ws+unix
$uri
->scheme,
"\n"
;
# will output: unix/
$uri
->host,
"\n"
;
# will output: /test/socket.sock
$uri
->port
# some classes don't yet understand the scheme ws+unix, so here is a work around
$uri
->set_false_scheme(
'ws'
);
$uri
->scheme,
"\n"
;
# now prints "ws"
DESCRIPTION
This class acts as a parser layer for URI, and adds support for handling the rare WebSocket URI using a "Unix Domain Socket. The scheme expected is "ws+unix". Since most modules don't understand this just yet, the fake scheme or $uri->set_false_scheme('ws') was added.
METHODS
URI::ws_Punix->default_port
Returns the default port /tmp/unix.sock
$uri->set_false_scheme('ws')
Used to overload the default behavior.. sometimes you may want to say "ws" in place of "ws+unix". Some modules expect ws, this method lets you overload the default of $uri->scheme.
URI::ws_Punix->scheme
Normally follows the defaults unless $uri->set_false_scheme('value') was called on this instance.
URI::ws_Punix->secure
Returns false
AUTHOR
Michael Shipper <AKALINUX@CPAN.ORG>