| java.lang.Object java.io.InputStream java.io.FilterInputStream net.sourceforge.jtds.ssl.TdsTlsInputStream
TdsTlsInputStream | class TdsTlsInputStream extends FilterInputStream (Code) | | An input stream that filters out TDS headers so they are not returned to
JSSE (which will not recognize them).
author: Rob Worsnop author: Mike Hutchinson version: $Id: TdsTlsInputStream.java,v 1.5 2005/10/20 09:46:38 alin_sinpalean Exp $ |
Method Summary | |
public int | read(byte[] b, int off, int len) |
bytesOutstanding | int bytesOutstanding(Code) | | |
pureSSL | boolean pureSSL(Code) | | False if TLS packets are encapsulated in TDS packets.
|
readBuffer | final byte[] readBuffer(Code) | | Temporary buffer used to de-encapsulate inital TLS packets.
Initial size should be enough for login phase after which no
buffering is required.
|
TdsTlsInputStream | public TdsTlsInputStream(InputStream in)(Code) | | Constructs a TdsTlsInputStream and bases it on an underlying stream.
Parameters: in - the underlying stream |
|
|