mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-27 19:26:08 +02:00
47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
/* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
|
*
|
|
* You can redistribute this program and/or modify it under the terms of
|
|
* the GNU Lesser Public License as published by the Free Software Foundation,
|
|
* either version 3 of the License, or (at your option) any later version.
|
|
*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Utilities;
|
|
|
|
namespace SMBLibrary.SMB1
|
|
{
|
|
/// <summary>
|
|
/// SMB_COM_WRITE_RAW Final Response
|
|
/// </summary>
|
|
public class WriteRawFinalResponse : SMB1Command
|
|
{
|
|
public const int ParametersLength = 2;
|
|
// Parameters;
|
|
public ushort Count;
|
|
|
|
public WriteRawFinalResponse() : base()
|
|
{}
|
|
|
|
public WriteRawFinalResponse(byte[] buffer, int offset) : base(buffer, offset, false)
|
|
{
|
|
Count = LittleEndianConverter.ToUInt16(this.SMBParameters, 0);
|
|
}
|
|
|
|
public override byte[] GetBytes(bool isUnicode)
|
|
{
|
|
this.SMBParameters = new byte[ParametersLength];
|
|
LittleEndianWriter.WriteUInt16(this.SMBParameters, 0, Count);
|
|
|
|
return base.GetBytes(isUnicode);
|
|
}
|
|
|
|
public override CommandName CommandName
|
|
{
|
|
get
|
|
{
|
|
return CommandName.SMB_COM_WRITE_COMPLETE;
|
|
}
|
|
}
|
|
}
|
|
}
|