I was getting an error message when attempting to compile iptables-1.2.6 with kernel 2.4.18.  It would tell me that dst was not a member of struct.  This appears to be due to a typo as the line return
(i->tuplehash[IP_CT_DIR_ORIGINAL].dst.protnum == *((u_int8_t *) data ));
should have read
(i->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protnum == *((u_int8_t *) data ));
 
This appeared to have corrected the problem and I am about to put this to the test.
 
I hope this helps
 
Thanks,
 
Bill Leck

Reply via email to