View Single Post
 
Old 03-17-2011, 01:14 AM
abiogenesis abiogenesis is offline
Cheetah
 
Join Date: Mar 2011
Posts: 2
Hi, it's me again
Thanks to your code I've fixed a couple of my bugs and I think I've found one in your setMulticastList function.

Quote:
for (i = 0; i < count; i++) {
crc = computeCRC32((const UInt8 *) addrs, 6);
...
}
Here, according to 5722-PG101-R.pdf, crc should be calculated for every address in the array, so it would be "addrs + i" or "&addrs[i]".
Reply With Quote