/* \summary: Common Address Redundancy Protocol (CARP) printer */
#ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
#endif
#include "netdissect-stdinc.h"
u_int version, type;
const char *type_s;
+ ndo->ndo_protocol = "carp";
ND_TCHECK_1(bp);
version = (EXTRACT_U_1(bp) & 0xf0) >> 4;
type = EXTRACT_U_1(bp) & 0x0f;
return;
trunc:
- ND_PRINT("[|carp]");
+ nd_print_trunc(ndo);
}