|
@@ -12,6 +12,30 @@
|
|
|
%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
+-type http_method() :: 'OPTIONS' | 'GET' | 'HEAD'
|
|
|
+ | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | string().
|
|
|
+-type http_uri() :: '*' | {absoluteURI, http | https, Host::string(),
|
|
|
+ Port::integer() | undefined, Path::string()}
|
|
|
+ | {scheme, Scheme::string(), string()}
|
|
|
+ | {abs_path, string()} | string().
|
|
|
+-type http_version() :: {Major::integer(), Minor::integer()}.
|
|
|
+-type http_header() :: 'Cache-Control' | 'Connection' | 'Date' | 'Pragma'
|
|
|
+ | 'Transfer-Encoding' | 'Upgrade' | 'Via' | 'Accept' | 'Accept-Charset'
|
|
|
+ | 'Accept-Encoding' | 'Accept-Language' | 'Authorization' | 'From' | 'Host'
|
|
|
+ | 'If-Modified-Since' | 'If-Match' | 'If-None-Match' | 'If-Range'
|
|
|
+ | 'If-Unmodified-Since' | 'Max-Forwards' | 'Proxy-Authorization' | 'Range'
|
|
|
+ | 'Referer' | 'User-Agent' | 'Age' | 'Location' | 'Proxy-Authenticate'
|
|
|
+ | 'Public' | 'Retry-After' | 'Server' | 'Vary' | 'Warning'
|
|
|
+ | 'Www-Authenticate' | 'Allow' | 'Content-Base' | 'Content-Encoding'
|
|
|
+ | 'Content-Language' | 'Content-Length' | 'Content-Location'
|
|
|
+ | 'Content-Md5' | 'Content-Range' | 'Content-Type' | 'Etag'
|
|
|
+ | 'Expires' | 'Last-Modified' | 'Accept-Ranges' | 'Set-Cookie'
|
|
|
+ | 'Set-Cookie2' | 'X-Forwarded-For' | 'Cookie' | 'Keep-Alive'
|
|
|
+ | 'Proxy-Connection' | string().
|
|
|
+-type http_headers() :: list({http_header(), string()}).
|
|
|
+%% -type http_cookies() :: term(). %% @todo
|
|
|
+-type http_status() :: non_neg_integer() | string().
|
|
|
+
|
|
|
-record(http_req, {
|
|
|
%% Transport.
|
|
|
socket = undefined :: undefined | inet:socket(),
|