/* \summary: Interior Gateway Routing Protocol (IGRP) 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 u_char *cp;
u_int nint, nsys, next;
+ ndo->ndo_protocol = "igrp";
hdr = (const struct igrphdr *)bp;
cp = (const u_char *)(hdr + 1);
ND_PRINT("igrp:");
if (nint == 0 && nsys == 0 && next == 0)
return;
trunc:
- ND_PRINT(" [|igrp]");
+ nd_print_trunc(ndo);
}