table of contents
        
      
      
    
      other versions
    
    - Tumbleweed 0.260.0-1.2
 - Leap-15.6
 
| Protocol::WebSocket::URL(3pm) | User Contributed Perl Documentation | Protocol::WebSocket::URL(3pm) | 
NAME¶
Protocol::WebSocket::URL - WebSocket URL
SYNOPSIS¶
    # Construct
    my $url = Protocol::WebSocket::URL->new;
    $url->host('example.com');
    $url->port('3000');
    $url->secure(1);
    $url->to_string; # wss://example.com:3000
    # Parse
    my $url = Protocol::WebSocket::URL->new->parse('wss://example.com:3000');
    $url->host;   # example.com
    $url->port;   # 3000
    $url->secure; # 1
DESCRIPTION¶
Construct or parse a WebSocket URL.
ATTRIBUTES¶
"host"¶
"port"¶
"resource_name"¶
"secure"¶
METHODS¶
"new"¶
Create a new Protocol::WebSocket::URL instance.
"parse"¶
Parse a WebSocket URL.
"to_string"¶
Construct a WebSocket URL.
| 2025-06-03 | perl v5.42.0 |