FileDocCategorySizeDatePackage
TransPeekNamedPipe.javaAPI DocJCIFS 1.3.17 API2217Tue Oct 18 15:26:24 BST 2011jcifs.smb

TransPeekNamedPipe

public class TransPeekNamedPipe extends SmbComTransaction

Fields Summary
private int
fid
Constructors Summary
TransPeekNamedPipe(String pipeName, int fid)

        name = pipeName;
        this.fid = fid;
        command = SMB_COM_TRANSACTION;
        subCommand = TRANS_PEEK_NAMED_PIPE;
        timeout = 0xFFFFFFFF;
        maxParameterCount = 6;
        maxDataCount = 1;
        maxSetupCount = (byte)0x00;
        setupCount = 2;
    
Methods Summary
intreadDataWireFormat(byte[] buffer, int bufferIndex, int len)

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

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

        return 0;
    
public java.lang.StringtoString()

        return new String( "TransPeekNamedPipe[" + super.toString() +
            ",pipeName=" + name + "]" );
    
intwriteDataWireFormat(byte[] dst, int dstIndex)

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

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

        dst[dstIndex++] = subCommand;
        dst[dstIndex++] = (byte)0x00;
        // this says "Transaction priority" in netmon
        writeInt2( fid, dst, dstIndex );
        return 4;