SmbComWriteResponsepublic class SmbComWriteResponse extends ServerMessageBlock
Constructors Summary |
---|
SmbComWriteResponse()
|
Methods Summary |
---|
int | readBytesWireFormat(byte[] buffer, int bufferIndex)
return 0;
| int | readParameterWordsWireFormat(byte[] buffer, int bufferIndex)
count = readInt2( buffer, bufferIndex ) & 0xFFFFL;
return 8;
| public java.lang.String | toString()
return new String( "SmbComWriteResponse[" +
super.toString() +
",count=" + count + "]" );
| int | writeBytesWireFormat(byte[] dst, int dstIndex)
return 0;
| int | writeParameterWordsWireFormat(byte[] dst, int dstIndex)
return 0;
|
|