开发者

How to dynamically allocate buffer for receiving UDP socket (VB.Net)

开发者 https://www.devze.com 2022-12-20 15:44 出处:网络
A friend and I are working on a project where we\'re required to build a reliable UDPclient/server using VB.Net.We have things working well, but one thing that still eludes us is how to dynamically al

A friend and I are working on a project where we're required to build a reliable UDPclient/server using VB.Net. We have things working well, but one thing that still eludes us is how to dynamically allocate a (byte) buffer for the incoming data. Right now we have to hard code a maximum value/MTU (or use a really large buffer size and resize it once we've finished开发者_如何学C receiving). Does anyone know of a way that this can be done without needing to specify the receive buffer size?

Basically, before calling the receive function on the socket with a buffer of size x, we want to know x so we can allocate an appropriately sized buffer. Perhaps this is a problem in all socket programing that you just have to deal with??


This is one of the burden's you'll have to take on when you use UDP. You'll have to consider Path MTU discovery. Then again, since you are making reliable UDP, you should be able to auto-detect this and dynamically switch to a smaller packet size. That will solve PMTUD problems as well.

Hopefully, this doesn't sound too much like: "those whose don't use TCP are doomed to reinvent it." Check out the RFCs that are linked in that article for ideas.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号