mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
added more options to SMB2 set-info command
This commit is contained in:
parent
a342090f18
commit
b6aa0b9d72
4 changed files with 450 additions and 10 deletions
|
@ -3327,6 +3327,25 @@ export {
|
|||
## The action taken in establishing the open.
|
||||
create_action : count;
|
||||
};
|
||||
|
||||
## A series of integers flags used to set quota and content indexing control information for a file system volume in SMB2.
|
||||
##
|
||||
## For more information, see MS-SMB2:2.2.39 and MS-FSCC:2.5.2
|
||||
##
|
||||
type SMB2::Fscontrol: record {
|
||||
## minimum amount of free disk space required to begin document filtering
|
||||
free_space_start_filtering : int;
|
||||
## minimum amount of free disk space required to continue document filtering
|
||||
free_space_threshold : int;
|
||||
## minimum amount of free disk space required to continue document filtering
|
||||
free_space_threshold : int;
|
||||
## default per-user disk quota
|
||||
delete_quota_threshold : count;
|
||||
## default per-user disk limit
|
||||
default_quota_limit : count;
|
||||
## file systems control flags passed as unsigned int
|
||||
fs_control_flags : count;
|
||||
};
|
||||
}
|
||||
|
||||
module GLOBAL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue