aboutsummaryrefslogtreecommitdiffstats
path: root/doc/tethereal.pod.template
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2003-08-27 15:23:11 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2003-08-27 15:23:11 +0000
commit52338a3bafa30b1c1ea6759ea14a60c5d3fd35da (patch)
treea4104c638529709d8c4f8b869d76c7f5253c6d16 /doc/tethereal.pod.template
parentd3562c0480240333a99315699992e3165702a369 (diff)
Add a "contains" operator for byte-strings, strings, and tvbuffs (protocols).
The search uses a naive approach; more work is required to add a Boyer-Moore Search algorithm. svn path=/trunk/; revision=8280
Diffstat (limited to 'doc/tethereal.pod.template')
-rw-r--r--doc/tethereal.pod.template7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/tethereal.pod.template b/doc/tethereal.pod.template
index 248ad436e8..7e439c76ee 100644
--- a/doc/tethereal.pod.template
+++ b/doc/tethereal.pod.template
@@ -599,6 +599,11 @@ abbreviations:
ge, >= Greater than or Equal to
le, <= Less than or Equal to
+An additional operater exists that is expressed only in English, not
+punctuation:
+
+ contains Does the protocol, byte-string, or string contain a value
+
Furthermore, each protocol field is typed. The types are:
Unsigned integer (either 8-bit, 16-bit, 24-bit, or 32-bit)
@@ -695,7 +700,7 @@ Use of octal to look for "HEAD":
This means that you must escape backslashes with backslashes inside
double quotes:
- smb.path == "\\\\SERVER\\SHARE"
+ smb.path contains "\\\\SERVER\\SHARE"
to look for \\SERVER\SHARE in "smb.path".