Giter VIP home page Giter VIP logo

Comments (3)

l42111996 avatar l42111996 commented on May 24, 2024

你的参数是什么样子的?
这种情况有没有什么简单的方法重现?

from java-kcp.

testwen00 avatar testwen00 commented on May 24, 2024

server:
ChannelConfig channelConfig = new ChannelConfig();
channelConfig.nodelay(true, 30, 2, true);
channelConfig.setSndwnd(1024);
channelConfig.setRcvwnd(1024);
channelConfig.setMtu(1400);
channelConfig.setFecDataShardCount(10);
channelConfig.setFecParityShardCount(3);
channelConfig.setAckNoDelay(true);
channelConfig.setTimeoutMillis(5000);
channelConfig.setUseConvChannel(true);
channelConfig.setCrc32Check(false);

client:
ChannelConfig channelConfig = new ChannelConfig();
channelConfig.nodelay(true, 30, 2, true);
channelConfig.setSndwnd(1024);
channelConfig.setRcvwnd(1024);
channelConfig.setMtu(1400);
channelConfig.setFecDataShardCount(10);
channelConfig.setFecParityShardCount(3);
channelConfig.setAckNoDelay(true);
channelConfig.setConv(UUID.randomUUID());
channelConfig.setUseConvChannel(true);
channelConfig.setCrc32Check(false);

测试发送的视频数据,数据包比较大,例如:一个包有230119个字节。

目前看代码逻辑还需要时间,所以我还无法给出重现的测试用例。

from java-kcp.

testwen00 avatar testwen00 commented on May 24, 2024

是我这边修改byebuf造成,ServerChannelHandler 修改为继承SimpleChannelInboundHandler,read里采用了copy bytebuf,所以造成此问题

from java-kcp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.