Jan Engelhardt wrote:
On Tuesday 2008-03-25 15:14, Patrick McHardy wrote:
+
+static inline void nf_ct_dump_tuple(const struct nf_conntrack_tuple *t)
+{
+ switch (t->src.l3num) {
+ case AF_INET:
+ nf_ct_dump_tuple_ip(t);
+ break;
+ case AF_INET6:
+ nf_ct_dump_tuple_ipv6(t);
+ break;
+ }
+}
+
+#define NF_CT_DUMP_TUPLE(tp) nf_ct_dump_tuple(tp)
I think it would be wiser just to remove this macro and
convert all kernel users to lowercase -- there are only
kernel users I guess, since include/net/ is not exported
to userspace AFAICS.
Sure, please go ahead :)
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html