diff options
author | Loïc Hoguin <[email protected]> | 2013-05-16 16:06:52 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-05-16 16:06:52 +0200 |
commit | c0c333e41bcd7d89a48a5c35d8e21b305c35627e (patch) | |
tree | 11b0656c8a69baf3a175b543cffda7f10a4153c8 /src/cowboy_client.erl | |
parent | ba7e6c07ecfb24464bf83825dc4d749fd378c78b (diff) | |
download | cowboy-c0c333e41bcd7d89a48a5c35d8e21b305c35627e.tar.gz cowboy-c0c333e41bcd7d89a48a5c35d8e21b305c35627e.tar.bz2 cowboy-c0c333e41bcd7d89a48a5c35d8e21b305c35627e.zip |
Move cowboy_http:version() to cowboy:http_version()
Diffstat (limited to 'src/cowboy_client.erl')
-rw-r--r-- | src/cowboy_client.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy_client.erl b/src/cowboy_client.erl index faee904..b5f96b3 100644 --- a/src/cowboy_client.erl +++ b/src/cowboy_client.erl @@ -40,7 +40,7 @@ timeout = 5000 :: timeout(), %% @todo Configurable. buffer = <<>> :: binary(), connection = keepalive :: keepalive | close, - version = 'HTTP/1.1' :: cowboy_http:version(), + version = 'HTTP/1.1' :: cowboy:http_version(), response_body = undefined :: undefined | non_neg_integer() }). |