_login.pm
来自「ARM上的如果你对底层感兴趣」· PM 代码 · 共 26 行
PM
26 行
package URI::URL::_login;
require URI::URL::_generic;
@ISA = qw(URI::URL::_generic);
# Generic terminal logins. This is used as a base class for 'telnet',
# 'tn3270', and 'rlogin' URL schemes.
sub _parse {
my($self, $init) = @_;
# All we want from _generic is the 'netloc' handling.
$self->URI::URL::_generic::_parse($init, 'netloc');
}
*path = \&URI::URL::bad_method;
*epath = \&URI::URL::bad_method;
*query = \&URI::URL::bad_method;
*equery = \&URI::URL::bad_method;
*params = \&URI::URL::bad_method;
*eparams = \&URI::URL::bad_method;
*frag = \&URI::URL::bad_method;
1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?