aboutsummaryrefslogtreecommitdiffstats
path: root/docbook
diff options
context:
space:
mode:
authorJohn Thacker <johnthacker@gmail.com>2021-12-29 10:18:57 -0500
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-12-30 01:17:06 +0000
commit021c25e22c39c2b7f2b99e9109cfd04a97e0e725 (patch)
tree4a2abe2a72e062f4cca83c6a5d26b02e8da4739c /docbook
parent797c66cc4c99889fcc9dc710d83e00c31eb56daf (diff)
text2pcap: Use standard log debug level
Remove the '-d' option from text2pcap, and move the two levels of debug messages in text2pcap and text_import to either LOG_LEVEL_DEBUG or LOG_LEVEL_NOISY as appropriate.
Diffstat (limited to 'docbook')
-rw-r--r--docbook/release-notes.adoc6
1 files changed, 5 insertions, 1 deletions
diff --git a/docbook/release-notes.adoc b/docbook/release-notes.adoc
index 3da5ea89ba..804b3db7cf 100644
--- a/docbook/release-notes.adoc
+++ b/docbook/release-notes.adoc
@@ -53,9 +53,13 @@ They previously shipped with Npcap 1.55.
PCRE2 is compatible with PCRE so the user-visible changes should be minimal.
Some exotic patterns may now be invalid and require rewriting.
** Adds a new strict equality operator "===" or "all_eq". The expression "a === b" is true if and only if all a's are equal to b.
- The negation of "===" can now be written as "!==" (any_ne), in adittion to "~=" (introduced in Wireshark 3.6.0).
+ The negation of "===" can now be written as "!==" (any_ne), in addition to "~=" (introduced in Wireshark 3.6.0).
** Adds the aliases "any_eq" for "==" and "all_ne" for "!=".
+* text2pcap has been updated to use the new logging output options and the
+ "-d" flag has been removed. The "debug" log level corresponds to the old
+ "-d" flag, and the "noisy" log level corresponds to using "-d" multiple times.
+
* HTTP2 dissector now supports using fake headers to parse the DATAs of streams captured without first HEADERS frames of a long-lived stream (like
gRPC streaming call which allows sending many request or response messages in one HTTP2 stream). User can specify fake headers according to the
server port, stream id and direction of the long-lived stream that we start capturing packets after it is established.