aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2011-12-17 13:24:54 +0100
committerLoïc Hoguin <[email protected]>2011-12-17 13:24:54 +0100
commit740931131b06bfc3ec830312d52d87ab7e8a932d (patch)
treece111b557b2e9964ce10179c0b05ba063b531328 /include
parent621411350a754852317d6a1c3ecfe8e5356ef12f (diff)
parentfed1410b14ce284266b11c149f608bb49ed7ffbb (diff)
downloadcowboy-740931131b06bfc3ec830312d52d87ab7e8a932d.tar.gz
cowboy-740931131b06bfc3ec830312d52d87ab7e8a932d.tar.bz2
cowboy-740931131b06bfc3ec830312d52d87ab7e8a932d.zip
Merge branch 'resp-body-fix' of github.com:klaar/cowboy
Diffstat (limited to 'include')
-rw-r--r--include/http.hrl2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http.hrl b/include/http.hrl
index fd0eecc..e5311c4 100644
--- a/include/http.hrl
+++ b/include/http.hrl
@@ -68,7 +68,7 @@
%% Response.
resp_state = waiting :: locked | waiting | chunks | done,
resp_headers = [] :: http_headers(),
- resp_body = <<>> :: binary(),
+ resp_body = <<>> :: iodata(),
%% Functions.
urldecode :: {fun((binary(), T) -> binary()), T}