|
Actually, all you need to add to the ipnatadm.h header is
#include <linux/in.h>
The problem with the compilation is that it doesnt have a definition for in_addr <linux/in.h> defines in_addr so:
struct in_addr {
__u32 s_addr;
};
the s_addr is the part that is considered incomplete. Kevin Reynolds Senior Network Engineer DMW Worldwide kreynolds@dmwgroup.com
|