mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-23 08:50:52 +01:00
fix1
This commit is contained in:
parent
3e111d3ccc
commit
cfd73cb19f
@ -13,7 +13,6 @@ import gearth.protocol.packethandler.unity.UnityPacketHandler;
|
|||||||
import javax.websocket.*;
|
import javax.websocket.*;
|
||||||
import javax.websocket.server.ServerEndpoint;
|
import javax.websocket.server.ServerEndpoint;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.ByteBuffer;
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
@ServerEndpoint(value = "/packethandler")
|
@ServerEndpoint(value = "/packethandler")
|
||||||
@ -36,15 +35,11 @@ public class UnityCommunicator {
|
|||||||
|
|
||||||
@OnOpen
|
@OnOpen
|
||||||
public void onOpen(Session session) throws IOException {
|
public void onOpen(Session session) throws IOException {
|
||||||
|
session.setMaxBinaryMessageBufferSize(1024 * 1024 * 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
@OnMessage
|
@OnMessage
|
||||||
public void onMessage(byte[] b, Session session) throws IOException {
|
public void onMessage(byte[] b, Session session) throws IOException {
|
||||||
// session.getBasicRemote().sendText(message.toUpperCase());
|
|
||||||
// session.getBasicRemote().sendBinary(ByteBuffer.wrap(b));
|
|
||||||
// System.out.println("received " + new HPacket(b).toString());
|
|
||||||
|
|
||||||
byte[] packet = Arrays.copyOfRange(b, 1, b.length);
|
byte[] packet = Arrays.copyOfRange(b, 1, b.length);
|
||||||
|
|
||||||
if (hProxy == null && b[0] == 1) {
|
if (hProxy == null && b[0] == 1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user