12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class LogoffAndXRequest : SMBAndXCommand
- {
- public const int ParametersLength = 4;
- public LogoffAndXRequest() : base()
- {
- }
- public LogoffAndXRequest(byte[] buffer, int offset) : base(buffer, offset, false)
- {
- }
- public override byte[] GetBytes(bool isUnicode)
- {
- this.SMBParameters = new byte[ParametersLength];
- return base.GetBytes(isUnicode);
- }
- public override CommandName CommandName
- {
- get
- {
- return CommandName.SMB_COM_LOGOFF_ANDX;
- }
- }
- }
- }
|