+static void
+null_hdr_print(netdissect_options *ndo, uint32_t family, u_int length)
+{
+ if (!ndo->ndo_qflag) {
+ ND_PRINT("AF %s (%u)",
+ tok2str(bsd_af_values,"Unknown",family),family);
+ } else {
+ ND_PRINT("%s",
+ tok2str(bsd_af_values,"Unknown AF %u",family));
+ }
+
+ ND_PRINT(", length %u: ", length);
+}
+
+/*
+ * This is the top level routine of the printer. 'p' points
+ * to the ether header of the packet, 'h->ts' is the timestamp,
+ * 'h->len' is the length of the packet off the wire, and 'h->caplen'
+ * is the number of bytes actually captured.
+ */