mirror of https://github.com/sipwise/lua-uri.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
722 B
26 lines
722 B
=head1 Name
|
|
|
|
lua-uri-telnet - Telnet URI support for Lua URI library
|
|
|
|
=head1 Description
|
|
|
|
The class C<uri.telnet> is used for URIs with the C<telnet> scheme. It
|
|
inherits from the L<uri._login|lua-uri-_login(3)> class.
|
|
|
|
Telnet URIs are not allowed to have any information in their path part,
|
|
because there isn't any specification defining what it would mean. An empty
|
|
path or a path of '/' is acceptable, and normalized to '/'. Any other path
|
|
is considered invalid.
|
|
|
|
The default port for telnet URIs S<is 23>.
|
|
|
|
There are no extra methods defined for telnet URIs, only those described in
|
|
L<lua-uri(3)> and L<lua-uri-_login(3)>.
|
|
|
|
=head1 References
|
|
|
|
This class is based on L<RFC 4248>.
|
|
|
|
=for comment
|
|
vi:ts=4 sw=4 expandtab
|