From: Tom Peters Date: Thu, 26 Jun 2014 17:35:46 +0000 (-0400) Subject: corrected order of buffer names X-Git-Tag: 3.0.0-233~1454^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bed93a5f4d6d7a6a688f1ead28cea1f262ca820f;p=thirdparty%2Fsnort3.git corrected order of buffer names --- diff --git a/src/detection/detection_util.cc b/src/detection/detection_util.cc index 6f9888de7..30ef68d37 100644 --- a/src/detection/detection_util.cc +++ b/src/detection/detection_util.cc @@ -36,16 +36,16 @@ THREAD_LOCAL DataPointer g_file_data; const char* http_buffer_name[HTTP_BUFFER_MAX] = { "error/unset", - "http_uri", - "http_header", "http_client_body", - "http_method", "http_cookie", + "http_header", + "http_method", + "http_raw_cookie", + "http_raw_header", + "http_raw_uri", "http_stat_code", "http_stat_msg", - "http_raw_uri", - "http_raw_header", - "http_raw_cookie" + "http_uri" }; #define LOG_CHARS 16