From: Tom Peters (thopeter) Date: Mon, 11 Jun 2018 15:35:24 +0000 (-0400) Subject: Merge pull request #1263 in SNORT/snort3 from doc_restore to master X-Git-Tag: 3.0.0-246~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00db643b5d470ffd28cc1899afc7b852456b4dd2;p=thirdparty%2Fsnort3.git Merge pull request #1263 in SNORT/snort3 from doc_restore to master Squashed commit of the following: commit c8b73a78db1102536cddbf797e5ff4e73131c9a8 Author: Tom Peters Date: Mon Jun 11 10:54:11 2018 -0400 Snort Manual: corrections to tutorial section --- diff --git a/doc/tutorial.txt b/doc/tutorial.txt index c43009177..dfff778c7 100644 --- a/doc/tutorial.txt +++ b/doc/tutorial.txt @@ -263,19 +263,19 @@ include::errors.txt[] * A nil key in a table will not caught. Neither will a nil value in a table. Neither of the following will cause errors, nor will they - actually set http_server.post_depth: + actually set http_inspect.request_depth: - http_server = { post_depth } - http_server = { post_depth = undefined_symbol } + http_inspect = { request_depth } + http_inspect = { request_depth = undefined_symbol } * It is not an error to set a value multiple times. The actual value applied may not be the last in the table either. It is best to avoid such cases. - http_server = + http_inspect = { - post_depth = 1234, - post_depth = 4321 + request_depth = 1234, + request_depth = 4321 } * Snort can't tell you the exact filename or line number of a semantic