diff options
author | Loïc Hoguin <[email protected]> | 2011-05-04 12:05:57 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-05-04 12:52:13 +0200 |
commit | 6c1f73c53c9260d99f71676b400a27f0a853f584 (patch) | |
tree | 5d3ca05904b9f65647a24e8d17e6856583fb8fbc /include | |
parent | cc663df5db916b4f4da532d765fc2d6b5b60933c (diff) | |
download | cowboy-6c1f73c53c9260d99f71676b400a27f0a853f584.tar.gz cowboy-6c1f73c53c9260d99f71676b400a27f0a853f584.tar.bz2 cowboy-6c1f73c53c9260d99f71676b400a27f0a853f584.zip |
Add cowboy_http_req:port/1.
Returns the port given in the Host header if present,
otherwise the default port of 443 for HTTPS and 80 for HTTP
is returned.
Diffstat (limited to 'include')
-rw-r--r-- | include/http.hrl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/http.hrl b/include/http.hrl index 79bfc7b..52eeb12 100644 --- a/include/http.hrl +++ b/include/http.hrl @@ -50,6 +50,7 @@ peer = undefined :: undefined | {Address::ip_address(), Port::ip_port()}, host = undefined :: undefined | cowboy_dispatcher:path_tokens(), raw_host = undefined :: undefined | string(), + port = undefined :: undefined | ip_port(), path = undefined :: undefined | '*' | cowboy_dispatcher:path_tokens(), raw_path = undefined :: undefined | string(), qs_vals = undefined :: undefined | list({Name::string(), Value::string() | true}), |