Question

I am trying to receive a multicast UDP packet. The packet has a timestamp and some other useless data as well as sensor readings. Is there a way to only receive the last part of the packet, which would be the last 16 bytes out of the total 110 byte message? This would effectively take only the sensor readings and ignore the rest of the UDP package.

Était-ce utile?

La solution

If the data you want is at the beginning of the packet, yes, by providing a buffer only large enough to hold the data you want. Otherwise no.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top