FileDocCategorySizeDatePackage
SmbComWriteResponse.javaAPI DocJCIFS 1.3.17 API1604Tue Oct 18 15:26:24 BST 2011jcifs.smb

SmbComWriteResponse

public class SmbComWriteResponse extends ServerMessageBlock

Fields Summary
long
count
Constructors Summary
SmbComWriteResponse()

    
Methods Summary
intreadBytesWireFormat(byte[] buffer, int bufferIndex)

        return 0;
    
intreadParameterWordsWireFormat(byte[] buffer, int bufferIndex)

        count = readInt2( buffer, bufferIndex ) & 0xFFFFL;
        return 8;
    
public java.lang.StringtoString()

        return new String( "SmbComWriteResponse[" +
            super.toString() +
            ",count=" + count + "]" );
    
intwriteBytesWireFormat(byte[] dst, int dstIndex)

        return 0;
    
intwriteParameterWordsWireFormat(byte[] dst, int dstIndex)

        return 0;