add market_report_disable_cgi_params_check flag add TPackedConstChar, use it for property in UserData, misc modifications refactor query_parsing, no strlen for every string
@@ -125,6 +125,16 @@ public:
return it->second.data();
}
+
+ inline TStringBuf FormFieldBuf(const TStringBuf name, size_t numOfValue = 0) const {
+ const_iterator it = Find(name, numOfValue);
+ if (it == end()) {
+ return nullptr;
+ }
+ return it->second.data();
};
template <typename TIter>