Merge remote-tracking branch 'origin/topic/jsiwek/fix-broken-links'

* origin/topic/jsiwek/fix-broken-links:
  Fix various broken links in script documentation
This commit is contained in:
Tim Wojtulewicz 2021-01-29 09:54:01 -07:00
commit 447b40d89e
5 changed files with 10 additions and 7 deletions

View file

@ -1,3 +1,6 @@
4.1.0-dev.144 | 2021-01-29 09:54:01 -0700
* Fix various broken links in script documentation (Jon Siwek, Corelight)
4.1.0-dev.141 | 2021-01-25 12:32:48 -0800 4.1.0-dev.141 | 2021-01-25 12:32:48 -0800

View file

@ -1 +1 @@
4.1.0-dev.141 4.1.0-dev.144

View file

@ -147,7 +147,7 @@ export {
## The node type doing all the actual traffic analysis. ## The node type doing all the actual traffic analysis.
WORKER, WORKER,
## A node acting as a traffic recorder using the ## A node acting as a traffic recorder using the
## `Time Machine <https://www.zeek.org/community/time-machine.html>`_ ## `Time Machine <https://github.com/zeek/time-machine>`_
## software. ## software.
TIME_MACHINE, TIME_MACHINE,
}; };

View file

@ -5181,11 +5181,11 @@ export {
## NTP mode 7 message. Note that this is not defined in any RFC and is ## NTP mode 7 message. Note that this is not defined in any RFC and is
## implementation dependent. We used the official implementation from the ## implementation dependent. We used the official implementation from the
## `NTP official project <www.ntp.org>`_. A mode 7 packet is used ## `NTP official project <https://www.ntp.org>`_. A mode 7 packet is used
## exchanging data between an NTP server and a client for purposes other ## exchanging data between an NTP server and a client for purposes other
## than time synchronization, e.g. monitoring, statistics gathering and ## than time synchronization, e.g. monitoring, statistics gathering and
## configuration. For details see the documentation from the `NTP official ## configuration. For details see the documentation from the `NTP official
## project <www.ntp.org>`_, code v. ntp-4.2.8p13, in include/ntp_request.h. ## project <https://www.ntp.org>`_, code v. ntp-4.2.8p13, in include/ntp_request.h.
type NTP::Mode7Message: record { type NTP::Mode7Message: record {
## An implementation-specific code which specifies the ## An implementation-specific code which specifies the
## operation to be (which has been) performed and/or the ## operation to be (which has been) performed and/or the
@ -5246,7 +5246,7 @@ export {
## If mode 7, the fields for extra operations are here. ## If mode 7, the fields for extra operations are here.
## Note that this is not defined in any RFC ## Note that this is not defined in any RFC
## and is implementation dependent. We used the official implementation ## and is implementation dependent. We used the official implementation
## from the `NTP official project <www.ntp.org>`_. ## from the `NTP official project <https://www.ntp.org>`_.
## A mode 7 packet is used exchanging data between an NTP server ## A mode 7 packet is used exchanging data between an NTP server
## and a client for purposes other than time synchronization, e.g. ## and a client for purposes other than time synchronization, e.g.
## monitoring, statistics gathering and configuration. ## monitoring, statistics gathering and configuration.

View file

@ -2,7 +2,7 @@
#include "zeek/Reporter.h" #include "zeek/Reporter.h"
%%} %%}
## Decode a NetBIOS name. See http://support.microsoft.com/kb/194203. ## Decode a NetBIOS name. See https://jeffpar.github.io/kbarchive/kb/194/Q194203/.
## ##
## name: The encoded NetBIOS name, e.g., ``"FEEIEFCAEOEFFEECEJEPFDCAEOEBENEF"``. ## name: The encoded NetBIOS name, e.g., ``"FEEIEFCAEOEFFEECEJEPFDCAEOEBENEF"``.
## ##
@ -38,7 +38,7 @@ function decode_netbios_name%(name: string%): string
%} %}
## Converts a NetBIOS name type to its corresponding numeric value. ## Converts a NetBIOS name type to its corresponding numeric value.
## See http://support.microsoft.com/kb/163409. ## See https://en.wikipedia.org/wiki/NetBIOS#NetBIOS_Suffixes.
## ##
## name: The NetBIOS name type. ## name: The NetBIOS name type.
## ##