org.subethamail.smtp.io
Class DotUnstuffingInputStream
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
org.subethamail.smtp.io.DotUnstuffingInputStream
- All Implemented Interfaces:
- java.io.Closeable
public class DotUnstuffingInputStream
- extends java.io.FilterInputStream
Removes the dot-stuffing happening during the NNTP and SMTP message
transfer
|
Field Summary |
protected int[] |
last
An array to hold the last two bytes read off the stream. |
| Fields inherited from class java.io.FilterInputStream |
in |
|
Method Summary |
java.io.InputStream |
getBaseStream()
Provide access to the base input stream. |
int |
read()
Read through the stream, checking for '\r\n.' |
int |
read(byte[] b,
int off,
int len)
Read through the stream, checking for '\r\n.' |
| Methods inherited from class java.io.FilterInputStream |
available, close, mark, markSupported, read, reset, skip |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
last
protected int[] last
- An array to hold the last two bytes read off the stream.
This allows the stream to detect '\r\n' sequences even
when they occur across read boundaries.
DotUnstuffingInputStream
public DotUnstuffingInputStream(java.io.InputStream in)
read
public int read()
throws java.io.IOException
- Read through the stream, checking for '\r\n.'
- Overrides:
read in class java.io.FilterInputStream
- Returns:
- the byte read from the stream
- Throws:
java.io.IOException
read
public int read(byte[] b,
int off,
int len)
throws java.io.IOException
- Read through the stream, checking for '\r\n.'
- Overrides:
read in class java.io.FilterInputStream
- Parameters:
b - the byte array into which the bytes will be readoff - the offset into the byte array where the bytes will be insertedlen - the maximum number of bytes to be read off the stream
- Returns:
- the number of bytes read
- Throws:
java.io.IOException
getBaseStream
public java.io.InputStream getBaseStream()
- Provide access to the base input stream.
Copyright © 2006-2011. All Rights Reserved.