We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5212e0 commit 7df79a1Copy full SHA for 7df79a1
src/main/java/info/xiaomo/gengine/network/mina/code/ClientProtocolEncoder.java
@@ -38,7 +38,7 @@ && getOverScheduledWriteBytesHandler().test(session)) {
38
39
IoBuffer buf = null;
40
if (obj instanceof Message) {
41
- buf = MsgUtil.toGameClientIobuffer((Message) obj);
+ buf = MsgUtil.toGameClientIoBuffer((Message) obj);
42
} else if (obj instanceof byte[]) {
43
byte[] data = (byte[]) obj; // 消息ID(4字节)+protobuf
44
buf = IoBuffer.allocate(data.length + 6);
0 commit comments