mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00
Change smb2_create_response event arguments to single response struct.
Added disposition and create_action fields.
This commit is contained in:
parent
f041c97cdc
commit
a76e50d2e1
4 changed files with 41 additions and 24 deletions
|
@ -3068,6 +3068,25 @@ export {
|
|||
## Specifies the options to be applied when creating or opening the file.
|
||||
create_options : count;
|
||||
};
|
||||
|
||||
## The response to an SMB2 *create_request* request, which is sent by the client to request
|
||||
## either creation of or access to a file.
|
||||
##
|
||||
## For more information, see MS-SMB2:2.2.14
|
||||
##
|
||||
## .. bro:see:: smb2_create_response
|
||||
type SMB2::CreateResponse: record {
|
||||
## The SMB2 GUID for the file.
|
||||
file_id : SMB2::GUID;
|
||||
## Size of the file.
|
||||
size : count;
|
||||
## Timestamps associated with the file in question.
|
||||
times : SMB::MACTimes;
|
||||
## File attributes.
|
||||
attrs : SMB2::FileAttrs;
|
||||
## The action taken in establishing the open.
|
||||
create_action : count;
|
||||
};
|
||||
}
|
||||
|
||||
module GLOBAL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue