SmbComReadAndXResponsepublic class SmbComReadAndXResponse extends AndXServerMessageBlock
Fields Summary |
---|
byte[] | b | int | off | int | dataCompactionMode | int | dataLength | int | dataOffset |
Constructors Summary |
---|
SmbComReadAndXResponse()
| SmbComReadAndXResponse(byte[] b, int off)
this.b = b;
this.off = off;
|
Methods Summary |
---|
int | readBytesWireFormat(byte[] buffer, int bufferIndex)
// handled special in SmbTransport.doRecv()
return 0;
| int | readParameterWordsWireFormat(byte[] buffer, int bufferIndex)
int start = bufferIndex;
bufferIndex += 2; // reserved
dataCompactionMode = readInt2( buffer, bufferIndex );
bufferIndex += 4; // 2 reserved
dataLength = readInt2( buffer, bufferIndex );
bufferIndex += 2;
dataOffset = readInt2( buffer, bufferIndex );
bufferIndex += 12; // 10 reserved
return bufferIndex - start;
| void | setParam(byte[] b, int off)
this.b = b;
this.off = off;
| public java.lang.String | toString()
return new String( "SmbComReadAndXResponse[" +
super.toString() +
",dataCompactionMode=" + dataCompactionMode +
",dataLength=" + dataLength +
",dataOffset=" + dataOffset + "]" );
| int | writeBytesWireFormat(byte[] dst, int dstIndex)
return 0;
| int | writeParameterWordsWireFormat(byte[] dst, int dstIndex)
return 0;
|
|