aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-12-27 19:07:11 +0100
committerLoïc Hoguin <[email protected]>2014-12-27 19:09:28 +0100
commit3953fe4182af5e36542c6105d3ae74736699828c (patch)
tree3b720a523756caf62434a8720fd5a37b52191164 /include
parent092ef3d91b07ed0470ccfaba339d45986f65e40a (diff)
downloadcowlib-3953fe4182af5e36542c6105d3ae74736699828c.tar.gz
cowlib-3953fe4182af5e36542c6105d3ae74736699828c.tar.bz2
cowlib-3953fe4182af5e36542c6105d3ae74736699828c.zip
Add cow_http_hd:parse_range/1
From RFC7233.
Diffstat (limited to 'include')
-rw-r--r--include/cow_inline.hrl6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/cow_inline.hrl b/include/cow_inline.hrl
index a33b0b9..0c0caf9 100644
--- a/include/cow_inline.hrl
+++ b/include/cow_inline.hrl
@@ -58,7 +58,11 @@
%% IS_VCHAR(Character)
--define(IS_VCHAR(C), C =:= $\t; C > 31, C =/= 127).
+-define(IS_VCHAR(C), C =:= $\t; C > 31, C < 127).
+
+%% IS_VCHAR_OBS(Character)
+
+-define(IS_VCHAR_OBS(C), C =:= $\t; C > 31, C =/= 127).
%% LC(Character)