mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-24 10:08:14 +02:00
Changed ParametersLength data type for uniformity
This commit is contained in:
parent
03059cd78b
commit
44f62571aa
6 changed files with 6 additions and 6 deletions
|
@ -16,7 +16,7 @@ namespace SMBLibrary.SMB1
|
|||
/// </summary>
|
||||
public class LockingAndXResponse : SMBAndXCommand
|
||||
{
|
||||
public const uint ParametersLength = 4;
|
||||
public const int ParametersLength = 4;
|
||||
|
||||
public LockingAndXResponse() : base()
|
||||
{
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace SMBLibrary.SMB1
|
|||
/// </summary>
|
||||
public class LogoffAndXRequest : SMBAndXCommand
|
||||
{
|
||||
public const uint ParametersLength = 4;
|
||||
public const int ParametersLength = 4;
|
||||
|
||||
public LogoffAndXRequest() : base()
|
||||
{
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace SMBLibrary.SMB1
|
|||
/// </summary>
|
||||
public class LogoffAndXResponse : SMBAndXCommand
|
||||
{
|
||||
public const uint ParametersLength = 4;
|
||||
public const int ParametersLength = 4;
|
||||
|
||||
public LogoffAndXResponse() : base()
|
||||
{
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace SMBLibrary.SMB1
|
|||
/// </summary>
|
||||
public class WriteRawFinalResponse : SMB1Command
|
||||
{
|
||||
public const ushort ParametersLength = 2;
|
||||
public const int ParametersLength = 2;
|
||||
// Parameters;
|
||||
public ushort Count;
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace SMBLibrary.SMB1
|
|||
/// </summary>
|
||||
public class WriteRawInterimResponse : SMB1Command
|
||||
{
|
||||
public const ushort ParametersLength = 2;
|
||||
public const int ParametersLength = 2;
|
||||
// Parameters;
|
||||
public ushort Available;
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace SMBLibrary.SMB1
|
|||
/// </summary>
|
||||
public class NTTransactQuerySecurityDescriptorResponse : NTTransactSubcommand
|
||||
{
|
||||
public const uint ParametersLength = 4;
|
||||
public const int ParametersLength = 4;
|
||||
// Parameters:
|
||||
public uint LengthNeeded;
|
||||
// Data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue