Displaying 3 results from an estimated 3 matches for "ip_conntrack_proto".
2003 Feb 08
0
[Bug 46] ..patch-o-matic: nfnetlink_conntrack.c or -.h ... compile failure:
..._ the root cause here?: head -n 70 \
/usr/src/linux-2.4.18-24.8.0/include/linux/nfnetlink_conntrack.h \
| tail-n 15
};
#endif /* CONFIG_IP_NF_NAT_NEEDED */
struct cta_proto {
unsigned char num_proto; /* Protocol number IPPROTO_X */
union ip_conntrack_proto proto;
};
struct cta_help {
struct ip_conntrack_tuple tuple;
struct ip_conntrack_tuple mask;
char name[31]; /* name of conntrack helper */
union ip_conntrack_help help;
};
..I'm a C newbie: "pro...
2003 Feb 14
0
[Bug 46] ..patch-o-matic: nfnetlink_conntrack.c or -.h ... compile failure:
...ents From laforge@netfilter.org 2003-02-14 09:27 -------
#include <linux/netfilter_ipv4/ip_conntrack.h>
should be included by nfnetlink_conntrack.h... but for some reason (I think too
complex makefile dependencies) I didn't put that line in.
ip_conntrack.h contains the definitions foer ip_conntrack_proto and
ip_conntrack_help.
This is absolutely no 'blocker' severity. It is a minor issue with some
experimental code used by almost nobody.
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
2003 Feb 08
0
[Bug 46] New: ..patch-o-matic: nfnetlink_conntrack.c or -.h ... compile failure:
...ncomplete type...
...etc.
..root cause here: head -n 70 \
/usr/src/linux-2.4.18-24.8.0/include/linux/nfnetlink_conntrack.h \
| tail-n 15
};
#endif /* CONFIG_IP_NF_NAT_NEEDED */
struct cta_proto {
unsigned char num_proto; /* Protocol number IPPROTO_X */
union ip_conntrack_proto proto;
};
struct cta_help {
struct ip_conntrack_tuple tuple;
struct ip_conntrack_tuple mask;
char name[31]; /* name of conntrack helper */
union ip_conntrack_help help;
};
..I'm a C newbie: "proto" and "help": H...