-rw-r--r-- | configure.ac | 7 | ||||
-rw-r--r-- | lib/params.cc | 16 |
2 files changed, 23 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8397914..19e7832 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -77,2 +77,9 @@ ${curl_ssl_verify_peer} || AC_DEFINE([DISABLE_CURL_SSL_VERIFYPEER],,[defined if | |||
77 | 77 | ||
78 | postels_law=true | ||
79 | AC_ARG_ENABLE([postels-law], | ||
80 | AC_HELP_STRING([--disable-postels-law],[Be strict, do not adhere to Postel's Law ("be conservative in what you do, be liberal in what you accept from others", RFC 793)]), | ||
81 | [ test "${enableval}" = "no" && postels_law=false ] | ||
82 | ) | ||
83 | $postels_law && AC_DEFINE([POSTELS_LAW],,[defined if we want to adhere to Postel's Law]) | ||
84 | |||
78 | AC_CONFIG_FILES([ | 85 | AC_CONFIG_FILES([ |
diff --git a/lib/params.cc b/lib/params.cc index b181811..ea86d3a 100644 --- a/lib/params.cc +++ b/lib/params.cc | |||
@@ -6,2 +6,4 @@ | |||
6 | 6 | ||
7 | #include "config.h" | ||
8 | |||
7 | namespace opkele { | 9 | namespace opkele { |
@@ -32,2 +34,3 @@ namespace opkele { | |||
32 | break; | 34 | break; |
35 | #ifndef POSTELS_LAW | ||
33 | string::size_type nl = kv.find('\n',co+1); | 36 | string::size_type nl = kv.find('\n',co+1); |
@@ -38,2 +41,15 @@ namespace opkele { | |||
38 | p = nl+1; | 41 | p = nl+1; |
42 | #else /* POSTELS_LAW */ | ||
43 | string::size_type lb = kv.find_first_of("\r\n",co+1); | ||
44 | if(lb==string::npos) { | ||
45 | insert(value_type(kv.substr(p,co-p),kv.substr(co+1))); | ||
46 | break; | ||
47 | } | ||
48 | if(lb>co) | ||
49 | insert(value_type(kv.substr(p,co-p),kv.substr(co+1,lb-co-1))); | ||
50 | string::size_type nolb = kv.find_first_not_of("\r\n",lb); | ||
51 | if(nolb==string::npos) | ||
52 | break; | ||
53 | p = nolb; | ||
54 | #endif /* POSTELS_LAW */ | ||
39 | } | 55 | } |