1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
-
-
-
- public class TransactionQueryNamedPipeStateResponse : TransactionSubcommand
- {
- public NamedPipeStatus NMPipeStatus;
- public override byte[] GetSetup()
- {
- return new byte[0];
- }
- public override byte[] GetParameters(bool isUnicode)
- {
- byte[] parameters = new byte[2];
- NMPipeStatus.WriteBytes(parameters, 0);
- return parameters;
- }
- public override TransactionSubcommandName SubcommandName
- {
- get
- {
- return TransactionSubcommandName.TRANS_QUERY_NMPIPE_STATE;
- }
- }
- }
- }
|