Add descriptions for what the SMB1 events do, and references to the specification.

This commit is contained in:
Vlad Grigorescu 2016-10-03 17:22:05 -05:00
parent 32d03a4a9e
commit 3e1133f3cf
18 changed files with 147 additions and 38 deletions

View file

@ -2519,10 +2519,18 @@ module SMB;
export {
## MAC times for a file.
##
## For more information, see MS-SMB2:2.2.16
##
## .. bro:see:: smb1_nt_create_andx_response smb2_create_response
type SMB::MACTimes: record {
## The time when data was last written to the file.
modified : time &log;
## The time when the file was last accessed.
accessed : time &log;
## The time the file was created.
created : time &log;
## The time when the file was last modified.
changed : time &log;
} &log;
}