FileDocCategorySizeDatePackage
SmbComQueryInformation.javaAPI DocJCIFS 1.3.17 API1769Tue Oct 18 15:26:24 BST 2011jcifs.smb

SmbComQueryInformation

public class SmbComQueryInformation extends ServerMessageBlock

Fields Summary
Constructors Summary
SmbComQueryInformation(String filename)

        path = filename;
        command = SMB_COM_QUERY_INFORMATION;
    
Methods Summary
intreadBytesWireFormat(byte[] buffer, int bufferIndex)

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

        return 0;
    
public java.lang.StringtoString()

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

        int start = dstIndex;
        dst[dstIndex++] = (byte)0x04;
        dstIndex += writeString( path, dst, dstIndex );
        return dstIndex - start;
    
intwriteParameterWordsWireFormat(byte[] dst, int dstIndex)

        return 0;