mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
GH-535: fix typo of "C_HESIOD" in DNS::classes
Fixes GH-535
This commit is contained in:
parent
18e4976c6c
commit
31d30bb47e
5 changed files with 13 additions and 3 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
|
3.1.0-dev.22 | 2019-08-12 13:31:12 -0700
|
||||||
|
|
||||||
|
* GH-535: fix typo of "C_HESIOD" in DNS::classes (Jon Siwek, Corelight)
|
||||||
|
|
||||||
3.1.0-dev.21 | 2019-08-12 13:00:21 -0700
|
3.1.0-dev.21 | 2019-08-12 13:00:21 -0700
|
||||||
|
|
||||||
* Add new distro to Travis CI configuration for running leak tests (Tim Wojtulewicz, Corelight)
|
* Add new distro to Travis CI configuration for running leak tests (Tim Wojtulewicz, Corelight)
|
||||||
|
|
6
NEWS
6
NEWS
|
@ -16,6 +16,12 @@ Changed Functionality
|
||||||
``Known::AddrPortServTriplet`` and ``Known::services`` is now a table
|
``Known::AddrPortServTriplet`` and ``Known::services`` is now a table
|
||||||
instead of just a set.
|
instead of just a set.
|
||||||
|
|
||||||
|
- The DNS class name for Hesiod in the ``DNS::classes`` table is now spelled
|
||||||
|
correctly as "C_HESIOD" instead of "C_HESOD". For reference, this
|
||||||
|
class name string may appear in the dns.log file or in any custom
|
||||||
|
script logic that inspects the ``qclass`` field of ``DNS::Info``
|
||||||
|
after a ``dns_request`` event.
|
||||||
|
|
||||||
Removed Functionality
|
Removed Functionality
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
3.1.0-dev.21
|
3.1.0-dev.22
|
||||||
|
|
2
doc
2
doc
|
@ -1 +1 @@
|
||||||
Subproject commit 56019a5297cd5d167e0febc6b0b33a32a9dbe96e
|
Subproject commit dc8ac2dc1345ddb1ae5455466a795eac78d58aac
|
|
@ -126,7 +126,7 @@ export {
|
||||||
[1] = "C_INTERNET",
|
[1] = "C_INTERNET",
|
||||||
[2] = "C_CSNET",
|
[2] = "C_CSNET",
|
||||||
[3] = "C_CHAOS",
|
[3] = "C_CHAOS",
|
||||||
[4] = "C_HESOD",
|
[4] = "C_HESIOD",
|
||||||
[254] = "C_NONE",
|
[254] = "C_NONE",
|
||||||
[255] = "C_ANY",
|
[255] = "C_ANY",
|
||||||
} &default = function(n: count): string { return fmt("qclass-%d", n); };
|
} &default = function(n: count): string { return fmt("qclass-%d", n); };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue