Seems I way overshot it @phanaticd

This commit is contained in:
md_5 2012-12-24 14:04:44 +11:00
parent bc3f63790a
commit dc18d82bd9
3 changed files with 2 additions and 3 deletions

View File

@ -133,7 +133,6 @@ public class Configuration
*/ */
public String statsUuid = UUID.randomUUID().toString(); public String statsUuid = UUID.randomUUID().toString();
public boolean metricsEnabled = true; public boolean metricsEnabled = true;
public int bufferSize = 2048;
/** /**
* Load the configuration and save default values. * Load the configuration and save default values.

View File

@ -68,7 +68,7 @@ public class InitialHandler implements Runnable
out.write(new PacketFCEncryptionResponse().getPacket()); out.write(new PacketFCEncryptionResponse().getPacket());
in = new PacketInputStream(new CipherInputStream(socket.getInputStream(), EncryptionUtil.getCipher(false, shared))); in = new PacketInputStream(new CipherInputStream(socket.getInputStream(), EncryptionUtil.getCipher(false, shared)));
out = new CipherOutputStream(new BufferedOutputStream(socket.getOutputStream(), BungeeCord.instance.config.bufferSize), EncryptionUtil.getCipher(true, shared)); out = new CipherOutputStream(socket.getOutputStream(), EncryptionUtil.getCipher(true, shared));
List<byte[]> customPackets = new ArrayList<>(); List<byte[]> customPackets = new ArrayList<>();
byte[] custom; byte[] custom;
while (Util.getId((custom = in.readPacket())) != 0xCD) while (Util.getId((custom = in.readPacket())) != 0xCD)

View File

@ -66,7 +66,7 @@ public class ServerConnection extends GenericConnection
out.write(new PacketFAPluginMessage("REGISTER", channel.getBytes()).getPacket()); out.write(new PacketFAPluginMessage("REGISTER", channel.getBytes()).getPacket());
} }
out = new BufferedOutputStream(out, BungeeCord.instance.config.bufferSize); out = new BufferedOutputStream(out, 64);
return new ServerConnection(name, socket, in, out, login); return new ServerConnection(name, socket, in, out, login);
} catch (KickException ex) } catch (KickException ex)