ntohl takes a uint32_t. I have messages with many different members (of type uint32_t or uint16_t). Is it possible to properly pass in the entire received struct or union and have it converted to say uint32_t and then reinterpret_cast into my union or struct?
How I have been doing it is listing, line-by-line, each individual member of the union or struct and passing it to ntohl/s like this msg.member = ntohl(msg.member); but that is cumbersome!
The data structures are transferred in whole from a C# .NET application (Windows) to a Linux application.
When I tried,
void* ptr = &msg;
uint32_t temp = (uint32_t)ptr;
The compiler complains that:
error: cast from 'void*' to 'uint32_t' loses precision
uint32_t(which would only work if the struct contains a singleuint32_tmember), but the struct's address. So this will result in complete rubbish. What you wanted wasuint32_t temp = *(uint32_t*)&msg, but like said this will only work if the struct has only a single member of typeuint32_t. – Christian Rau Oct 26 '11 at 15:00