Print Autonomous System Number in ASDOT notation
The ASN
will be displayed in ASDOT
notation when the number is bigger than (code is here):
static char *
as_printf(netdissect_options *ndo,
char *str, int size, u_int asnum)
snprintf(str, size, "%u", asnum);
} else {
}
}