TransPeekNamedPipepublic class TransPeekNamedPipe extends SmbComTransaction
Fields Summary |
---|
private int | fid |
Constructors Summary |
---|
TransPeekNamedPipe(String pipeName, int fid)
name = pipeName;
this.fid = fid;
command = SMB_COM_TRANSACTION;
subCommand = TRANS_PEEK_NAMED_PIPE;
timeout = 0xFFFFFFFF;
maxParameterCount = 6;
maxDataCount = 1;
maxSetupCount = (byte)0x00;
setupCount = 2;
|
Methods Summary |
---|
int | readDataWireFormat(byte[] buffer, int bufferIndex, int len)
return 0;
| int | readParametersWireFormat(byte[] buffer, int bufferIndex, int len)
return 0;
| int | readSetupWireFormat(byte[] buffer, int bufferIndex, int len)
return 0;
| public java.lang.String | toString()
return new String( "TransPeekNamedPipe[" + super.toString() +
",pipeName=" + name + "]" );
| int | writeDataWireFormat(byte[] dst, int dstIndex)
return 0;
| int | writeParametersWireFormat(byte[] dst, int dstIndex)
return 0;
| int | writeSetupWireFormat(byte[] dst, int dstIndex)
dst[dstIndex++] = subCommand;
dst[dstIndex++] = (byte)0x00;
// this says "Transaction priority" in netmon
writeInt2( fid, dst, dstIndex );
return 4;
|
|