-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Susimail: Fix binary content-encoding
previously unsupported, same as 8bit, ref: RFC 2045
- Loading branch information
Showing
2 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
apps/susimail/src/src/i2p/susi/webmail/encoding/Binary.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* This file is part of susimail project, see http://susi.i2p/ | ||
* | ||
* Copyright (C) 2004-2005 <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
* $Revision: 1.3 $ | ||
*/ | ||
package i2p.susi.webmail.encoding; | ||
|
||
import java.io.IOException; | ||
import java.io.InputStream; | ||
|
||
import i2p.susi.util.Buffer; | ||
import i2p.susi.util.ReadBuffer; | ||
|
||
import net.i2p.data.DataHelper; | ||
|
||
/** | ||
* Same as EightBit | ||
* @since 0.9.61 | ||
*/ | ||
public class Binary extends Encoding { | ||
|
||
public String getName() { | ||
return "binary"; | ||
} | ||
|
||
public String encode(byte[] in) throws EncodingException { | ||
throw new EncodingException("unsupported"); | ||
} | ||
|
||
@Override | ||
public Buffer decode(byte[] in, int offset, int length) { | ||
return new ReadBuffer(in, offset, length); | ||
} | ||
|
||
/** | ||
* @return in unchanged | ||
*/ | ||
@Override | ||
public Buffer decode(Buffer in) { | ||
return in; | ||
} | ||
|
||
/** | ||
* Copy in to out, unchanged | ||
*/ | ||
public void decode(InputStream in, Buffer out) throws IOException { | ||
DataHelper.copy(in, out.getOutputStream()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters