mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 03:58:20 +00:00
Small modbus documentation update and tiny refactoring.
This commit is contained in:
parent
a2f336cc72
commit
c32b179ac5
2 changed files with 14 additions and 11 deletions
|
@ -11,12 +11,19 @@ export {
|
|||
const track_memmap: Host = ALL_HOSTS &redef;
|
||||
|
||||
type MemmapInfo: record {
|
||||
## Timestamp for the detected register change
|
||||
ts: time &log;
|
||||
## Unique ID for the connection
|
||||
uid: string &log;
|
||||
## Connection ID.
|
||||
id: conn_id &log;
|
||||
## The device memory offset.
|
||||
register: count &log;
|
||||
## The old value stored in the register.
|
||||
old_val: count &log;
|
||||
## The new value stored in the register.
|
||||
new_val: count &log;
|
||||
## The time delta between when the 'old_val' and 'new_val' were seen.
|
||||
delta: interval &log;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue