diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/http.hrl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/http.hrl b/include/http.hrl index c66f2b0..9ba3787 100644 --- a/include/http.hrl +++ b/include/http.hrl @@ -23,11 +23,12 @@ pid = undefined :: pid(), method = 'GET' :: cowboy_http:method(), version = {1, 1} :: cowboy_http:version(), - peer = undefined :: undefined | {inet:ip_address(), inet:ip_port()}, + peer = undefined :: undefined | + {inet:ip_address(), inet:port_number()}, host = undefined :: undefined | cowboy_dispatcher:tokens(), host_info = undefined :: undefined | cowboy_dispatcher:tokens(), raw_host = undefined :: undefined | binary(), - port = undefined :: undefined | inet:ip_port(), + port = undefined :: undefined | inet:port_number(), path = undefined :: undefined | '*' | cowboy_dispatcher:tokens(), path_info = undefined :: undefined | cowboy_dispatcher:tokens(), raw_path = undefined :: undefined | binary(), |