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.

link|improve this question
feedback

1 Answer

It looks like the iphrd struct has not been defined anywhere. Is it a typo of iphdr? Your issue looks like there is no struct called iphrd...

link|improve this answer
Thanks a lot. Yes it is iphdr – Harish Iyer Feb 6 at 3:44
Feel free to accept the answer then ;) – wallacer Apr 24 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.