void parse_message(char *buffer, int len) {
struct iphrd *ip_header = (struct iphrd *)buffer;
int recv_hopcount = (unsigned int)(ip_header->ttl);
//hops[recv_hopcount]++;
}
error: dereferencing pointer to incomplete type
I have include netinet/ip.h in the header file. The above code is written to access the ttl value contained in the IP header. Used raw sockets.