/* \summary: IPv6 fragmentation header printer */
#ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
#endif
-#include <netdissect-stdinc.h>
+#include "netdissect-stdinc.h"
#include "netdissect.h"
#include "extract.h"
const struct ip6_frag *dp;
const struct ip6_hdr *ip6;
+ ndo->ndo_protocol = "frag6";
dp = (const struct ip6_frag *)bp;
ip6 = (const struct ip6_hdr *)bp2;
return sizeof(struct ip6_frag);
}
trunc:
- ND_PRINT("[|frag]");
+ nd_print_trunc(ndo);
return -1;
}