aboutsummaryrefslogtreecommitdiff
path: root/cddl/lib/libdtrace/ip.d
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2015-09-15 05:16:26 +0000
committerMark Johnston <markj@FreeBSD.org>2015-09-15 05:16:26 +0000
commitc50c33189675c216f35b03548ae36e6c4f6ceeb9 (patch)
tree4d5940d9430af57a8161baf2d5e8fcfcf2fd6c71 /cddl/lib/libdtrace/ip.d
parent87dd1668e06d5f47947a1c0f2d5c9462a18ae3d3 (diff)
downloadsrc-c50c33189675c216f35b03548ae36e6c4f6ceeb9.tar.gz
src-c50c33189675c216f35b03548ae36e6c4f6ceeb9.zip
Remove an unneeded typedef of ip6_t from the DTrace ip provider library.
It causes an error when ipfilter is enabled, since ipl.ko contains an identical typedef. PR: 203092 MFC after: 1 week
Notes
Notes: svn path=/head/; revision=287807
Diffstat (limited to 'cddl/lib/libdtrace/ip.d')
-rw-r--r--cddl/lib/libdtrace/ip.d5
1 files changed, 2 insertions, 3 deletions
diff --git a/cddl/lib/libdtrace/ip.d b/cddl/lib/libdtrace/ip.d
index 33fb007e6fff..eb3846bda1c0 100644
--- a/cddl/lib/libdtrace/ip.d
+++ b/cddl/lib/libdtrace/ip.d
@@ -110,7 +110,6 @@ typedef struct ipv4info {
* These values are NULL if the packet is not IPv6.
*/
typedef struct in6_addr in6_addr_t;
-typedef struct ip6_hdr ip6_t;
typedef struct ipv6info {
uint8_t ipv6_ver; /* IP version (6) */
uint8_t ipv6_tclass; /* traffic class */
@@ -123,7 +122,7 @@ typedef struct ipv6info {
in6_addr_t *ipv6_dst; /* destination address */
string ipv6_saddr; /* source address, string */
string ipv6_daddr; /* destination address, string */
- ip6_t *ipv6_hdr; /* pointer to raw header */
+ struct ip6_hdr *ipv6_hdr; /* pointer to raw header */
} ipv6info_t;
#pragma D binding "1.5" IPPROTO_IP
@@ -282,5 +281,5 @@ translator ipv6info_t < struct ip6_hdr *p > {
ipv6_dst = p == NULL ? 0 : (in6_addr_t *)&p->ip6_dst;
ipv6_saddr = p == NULL ? 0 : inet_ntoa6(&p->ip6_src);
ipv6_daddr = p == NULL ? 0 : inet_ntoa6(&p->ip6_dst);
- ipv6_hdr = (ip6_t *)p;
+ ipv6_hdr = p;
};