TransPeekNamedPipeResponsepublic 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 |
---|
int | readDataWireFormat(byte[] buffer, int bufferIndex, int len)
return 0;
| int | readParametersWireFormat(byte[] buffer, int bufferIndex, int len)
available = readInt2( buffer, bufferIndex ); bufferIndex += 2;
head = readInt2( buffer, bufferIndex ); bufferIndex += 2;
status = readInt2( buffer, bufferIndex );
return 6;
| int | readSetupWireFormat(byte[] buffer, int bufferIndex, int len)
return 0;
| public java.lang.String | toString()
return new String( "TransPeekNamedPipeResponse[" + super.toString() + "]" );
| int | writeDataWireFormat(byte[] dst, int dstIndex)
return 0;
| int | writeParametersWireFormat(byte[] dst, int dstIndex)
return 0;
| int | writeSetupWireFormat(byte[] dst, int dstIndex)
return 0;
|
|