aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2022-06-08 11:30:03 +0100
committerJoão Valverde <j@v6e.pt>2022-06-08 12:12:25 +0100
commitbd0f0cbbedf06dbfc8d25d018a1ab8687e1c93d6 (patch)
treea25069e42a50711b6090dd8d8de38e84430db2b7 /doc
parent176ba718f02840bf983706213b452d636a6b99a1 (diff)
Docs: Update display filter manual page to PCRE2
Diffstat (limited to 'doc')
-rw-r--r--doc/wireshark-filter.adoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/wireshark-filter.adoc b/doc/wireshark-filter.adoc
index a2320b077c..2fda7103a8 100644
--- a/doc/wireshark-filter.adoc
+++ b/doc/wireshark-filter.adoc
@@ -109,7 +109,7 @@ The "contains" operator cannot be used on atomic fields,
such as numbers or IP addresses.
The "matches" or "~" operator allows a filter to apply to a specified
-Perl-compatible regular expression (PCRE). The regular expression must
+Perl-compatible regular expression (PCRE2). The regular expression must
be a double quoted string. The left hand side of the "matches" operator
must be a string, which can be a non-stringlike field implicitly or
explicitly converted to a string. Matches are case-insensitive by default.
@@ -124,10 +124,10 @@ You can force case sensitivity using
wsp.header.user_agent matches "(?-i)cldc"
-This is an example of PCRE's *(?*+option+*)* construct. *(?-i)* performs a
+This is an example of PCRE2's *(?*+option+*)* construct. *(?-i)* performs a
case-sensitive pattern match but other options can be specified as well. More
information can be found in the
-pcrepattern(3)|https://www.pcre.org/original/doc/html/pcrepattern.html man page.
+pcre2pattern(3)|https://www.pcre.org/current/doc/html/pcre2pattern.html man page.
=== Functions