|
vttp
An HTTP backed Virtual Table extension for SQLite
|
#include <fetch.h>

Public Attributes | |
| struct str | host |
| A string containing the domain (that is the hostname) followed by (if a port was specified) a ':' and the port of the URL. | |
| struct str | hostname |
| A string containing the domain of the URL. | |
| struct str | pathname |
| A string containing an initial '/' followed by the path of the URL, not including the query string or fragment. | |
| struct str | port |
| A string containing the port number of the URL. | |
| struct str | protocol |
| A string containing the protocol scheme of the URL, including the final ':'. | |
Taken from Web API URL, word 4 word, bar 4 bar.
| struct str url::host |
A string containing the domain (that is the hostname) followed by (if a port was specified) a ':' and the port of the URL.
| struct str url::hostname |
A string containing the domain of the URL.
https://developer.mozilla.org/en-US/docs/Web/API/URL/hostname
| struct str url::pathname |
A string containing an initial '/' followed by the path of the URL, not including the query string or fragment.
https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname
| struct str url::port |
A string containing the port number of the URL.
| struct str url::protocol |
A string containing the protocol scheme of the URL, including the final ':'.
https://developer.mozilla.org/en-US/docs/Web/API/URL/protocol