⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prospero.pm

📁 ARM上的如果你对底层感兴趣
💻 PM
字号:
package URI::URL::prospero;
require URI::URL::_generic;
@ISA = qw(URI::URL::_generic);

# RFC 1738 says:
#
#   A prospero URLs takes the form:
#
#      prospero://<host>:<port>/<hsoname>;<field>=<value>
#
#   where <host> and <port> are as described in Section 3.1. If :<port>
#   is omitted, the port defaults to 1525. No username or password is
#   allowed.
#
#   The <hsoname> is the host-specific object name in the Prospero
#   protocol, suitably encoded.  This name is opaque and interpreted by
#   the Prospero server.  The semicolon ";" is reserved and may not
#   appear without quoting in the <hsoname>.

sub default_port { 1525 }       # says rfc1738, section 3.11

sub _parse {
    my($self, $init) = @_;
    $self->URI::URL::_generic::_parse($init, qw(netloc path params frag));
}

1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -