I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit ffe03606 authored by zzz's avatar zzz
Browse files

Susimail: Fix binary content-encoding

previously unsupported, same as 8bit, ref: RFC 2045
parent e3493cc7
No related branches found
No related tags found
No related merge requests found
Pipeline #1357 failed
/*
* This file is part of susimail project, see http://susi.i2p/
*
* Copyright (C) 2004-2005 <susi23@mail.i2p>
*
* 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());
}
}
...@@ -43,7 +43,7 @@ import net.i2p.util.Log; ...@@ -43,7 +43,7 @@ import net.i2p.util.Log;
public class EncodingFactory { public class EncodingFactory {
private static final String CONFIG_ENCODING = "encodings"; private static final String CONFIG_ENCODING = "encodings";
private static final String DEFAULT_ENCODINGS = "i2p.susi.webmail.encoding.HeaderLine;i2p.susi.webmail.encoding.QuotedPrintable;i2p.susi.webmail.encoding.Base64;i2p.susi.webmail.encoding.SevenBit;i2p.susi.webmail.encoding.EightBit;i2p.susi.webmail.encoding.HTML"; private static final String DEFAULT_ENCODINGS = "i2p.susi.webmail.encoding.HeaderLine;i2p.susi.webmail.encoding.QuotedPrintable;i2p.susi.webmail.encoding.Base64;i2p.susi.webmail.encoding.SevenBit;i2p.susi.webmail.encoding.EightBit;i2p.susi.webmail.encoding.HTML;i2p.susi.webmail.encoding.Binary";
private static final Map<String, Encoding> encodings; private static final Map<String, Encoding> encodings;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment