added more options to SMB2 set-info command

This commit is contained in:
mauro 2019-02-26 15:00:54 +01:00
parent a342090f18
commit b6aa0b9d72
4 changed files with 450 additions and 10 deletions

View file

@ -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;