From 6b86f3c49697aff2664455d023647877f2267752 Mon Sep 17 00:00:00 2001 From: Tomas Plesnik <plesnik@ics.muni.cz> Date: Fri, 14 Sep 2012 08:47:01 +0200 Subject: [PATCH] pridana moznost pouziti 'undef' u vybranych polozek udalosti --- src/warden-client/doc/README | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/warden-client/doc/README b/src/warden-client/doc/README index 8d1f6f1..7a87989 100644 --- a/src/warden-client/doc/README +++ b/src/warden-client/doc/README @@ -371,39 +371,39 @@ I. Functions, Arguments and Calls # SOURCE_TYPE - VARCHAR 64 # Type of source of reported attack/issue. Currently supported values are: - # IP, URL, Reply-To: + # 'IP', 'URL', 'Reply-To:' $source_type = "IP"; # SOURCE - VARCHAR 256 - # identification of an attack source/origin according to source_type + # Identification of an attack source/origin according to source_type. $source = "123.123.123.123"; # TARGET_PROTO - VARCHAR 16 # Protocol type of reported attack/issue target. Supported are all L3 and L4 - # protocols. + # protocols or 'undef'. $target_proto = "TCP"; # TARGET_PORT - INT 2 - # Port number of reported attack/issue target. + # Port number of reported attack/issue target or 'undef'. $target_port = "22"; # ATTACK_SCALE - INT 4 - # Definition of attack scale, e.g., number of affected targets. Null is also + # Definition of attack scale, e.g., number of affected targets. 'undef' is also # possible when attack scale is not known or clear enough. $attack_scale = "1234567890"; # NOTE - TEXT - # Some important(!) note or comment. Also, it may contain virus + # Some important(!) note, comment or 'undef'. Also, it may contain virus # sample, phishing e-mail with headers and other accordingly to event type. $note = "this threat is dangerous"; # PRIORITY - INT 1 # Subjective definition of incident severity. Values 0-255 are - # possible where 0 is the lowest priority. + # possible where 0 is the lowest priority or 'undef'. $priority = "1"; # TIMEOUT - INT 2 - # Subjective time (in minutes). After this time event might be + # Subjective time (in minutes) or 'undef'. After this time event might be # considered timeouted. $timeout = "20"; -- GitLab