FileDocCategorySizeDatePackage
SmbComWriteAndXResponse.javaAPI DocJCIFS 1.3.17 API1620Tue Oct 18 15:26:24 BST 2011jcifs.smb

SmbComWriteAndXResponse

public class SmbComWriteAndXResponse extends AndXServerMessageBlock

Fields Summary
long
count
Constructors Summary
SmbComWriteAndXResponse()

    
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( "SmbComWriteAndXResponse[" +
            super.toString() +
            ",count=" + count + "]" );
    
intwriteBytesWireFormat(byte[] dst, int dstIndex)

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

        return 0;