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

TransPeekNamedPipeResponse

public class TransPeekNamedPipeResponse extends SmbComTransactionResponse

Fields Summary
private SmbNamedPipe
pipe
private int
head
static final int
STATUS_DISCONNECTED
static final int
STATUS_LISTENING
static final int
STATUS_CONNECTION_OK
static final int
STATUS_SERVER_END_CLOSED
int
status
int
available
Constructors Summary
TransPeekNamedPipeResponse(SmbNamedPipe pipe)


        
        this.pipe = pipe;
    
Methods Summary
intreadDataWireFormat(byte[] buffer, int bufferIndex, int len)

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

        available = readInt2( buffer, bufferIndex ); bufferIndex += 2;
        head = readInt2( buffer, bufferIndex ); bufferIndex += 2;
        status = readInt2( buffer, bufferIndex );
        return 6;
    
intreadSetupWireFormat(byte[] buffer, int bufferIndex, int len)

        return 0;
    
public java.lang.StringtoString()

        return new String( "TransPeekNamedPipeResponse[" + super.toString() + "]" );
    
intwriteDataWireFormat(byte[] dst, int dstIndex)

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

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

        return 0;