mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Summarize URL tables in url.lua NSEDoc.
This commit is contained in:
parent
3e73b033a2
commit
33fa3fae76
1 changed files with 14 additions and 0 deletions
|
|
@ -1,6 +1,20 @@
|
|||
---
|
||||
-- URI parsing, composition, and relative URL resolution.
|
||||
--
|
||||
-- A URL is represented as a table with the following entries:
|
||||
-- * <code>scheme</code>
|
||||
-- * <code>fragment</code>
|
||||
-- * <code>query</code>
|
||||
-- * <code>params</code>
|
||||
-- * <code>authority</code>
|
||||
-- * <code>userinfo</code>
|
||||
-- * <code>path</code>
|
||||
-- * <code>password</code>
|
||||
-- These correspond to these parts of a URL (some may be <code>nil</code>):
|
||||
-- <code>
|
||||
-- scheme://userinfo@password:authority:port/path;params?query#fragment
|
||||
-- </code>
|
||||
--
|
||||
-- @author Diego Nehab
|
||||
-- @author Eddie Bell <ejlbell@gmail.com>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue