fixes something, i guess

This commit is contained in:
sirjonasxx 2020-05-01 14:37:33 +02:00
parent 59a0adac82
commit 55198b77c4
2 changed files with 8 additions and 1 deletions

View File

@ -36,6 +36,9 @@ public abstract class ProxyProvider {
server.setTcpNoDelay(true);
client.setTcpNoDelay(true);
client.setSoTimeout(0);
server.setSoTimeout(0);
if (HConnection.DEBUG) System.out.println(server.getLocalAddress().getHostAddress() + ": " + server.getLocalPort());
Rc4Obtainer rc4Obtainer = new Rc4Obtainer(hConnection);
@ -83,7 +86,10 @@ public abstract class ProxyProvider {
packetHandler.act(Arrays.copyOf(buffer, readLength));
}
}
catch (IOException ignore) {} finally {
catch (IOException ignore) {
// System.err.println(packetHandler instanceof IncomingPacketHandler ? "incoming" : "outgoing");
// ignore.printStackTrace();
} finally {
abort.release();
}
}).start();

View File

@ -34,6 +34,7 @@ public class IncomingPacketHandler extends PacketHandler {
@Override
public void act(byte[] buffer) throws IOException {
System.out.println("gotincoming");
if (isDataStream) {
continuedAct(buffer);
}