Adds support to the INBOUND_DATA_ERROR variable and SecRequestBodyLimit direc.

This commit is contained in:
Felipe Zimmerle
2015-07-21 02:14:47 -03:00
parent 95c2fed89c
commit 9c066e3198
8 changed files with 138 additions and 6 deletions

View File

@@ -167,6 +167,7 @@ int Rules::merge(Driver *from) {
this->debug_log_path = from->debug_log_path;
this->debug_level = from->debug_level;
this->components = from->components;
this->requestBodyLimit = from->requestBodyLimit;
if (m_custom_debug_log) {
this->debug_log = m_custom_debug_log->new_instance();
@@ -201,6 +202,7 @@ int Rules::merge(Rules *from) {
this->sec_request_body_access = from->sec_request_body_access;
this->sec_response_body_access = from->sec_response_body_access;
this->components = from->components;
this->requestBodyLimit = from->requestBodyLimit;
this->debug_log = from->debug_log;