|It seems that there are 2 definitions available in ||netinet/udp.h: /* UDP header as specified by RFC 768, August 1980. */#ifdef__FAVOR_BSD structudphdr {u_int16_tuh_sport;/* source port */u_int16_tuh_dport;/* destination port */u_int16_tuh_ulen;/* udp length */u_int16_tuh_sum;/* udp checksum */};#elsestructudphdr {u_int16_tsource;u_int16_tdest;u_int16_tlen;u_int16_tcheck;};#endif So, could you please place a # undef |||__FAVOR_BSD in front of the include files? | |