We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
默认的buffer2048 ,读取的时候报Unable to read object larger than read buffer异常, 当我把buffersize 扩大时,读取的结果为null, 不管怎么样都会走到这里 if (currentObjectLength <= 0) throw new KryoNetException("Invalid object length: " + currentObjectLength); if (currentObjectLength > readBuffer.capacity()) throw new KryoNetException("Unable to read object larger than read buffer: " + currentObjectLength); 大家有遇到吗?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
默认的buffer2048 ,读取的时候报Unable to read object larger than read buffer异常,
当我把buffersize 扩大时,读取的结果为null,
不管怎么样都会走到这里
if (currentObjectLength <= 0) throw new KryoNetException("Invalid object length: " + currentObjectLength);
if (currentObjectLength > readBuffer.capacity())
throw new KryoNetException("Unable to read object larger than read buffer: " + currentObjectLength);
大家有遇到吗?
The text was updated successfully, but these errors were encountered: