What do you mean by 'puts the ports in a different location'? Clarify
please.
Look at the proto_ports_offset() function in the kernel if you don't
believe me.
I've never stated that I do not believe you - I just asked for a
clarification. After looking at the example below I am still unclear
what your point is (call me daft if you like!).
static inline int proto_ports_offset(int proto)
{
switch (proto) {
case IPPROTO_TCP:
case IPPROTO_UDP:
case IPPROTO_DCCP:
case IPPROTO_ESP: /* SPI */
case IPPROTO_SCTP:
case IPPROTO_UDPLITE:
return 0;
case IPPROTO_AH: /* SPI */
return 4;
default:
return -EINVAL;
}
}
--
To unsubscribe from this list: send the line "unsubscribe netfilter" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html