Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:ul

384 		uint32_t ul;
386 ul = EXTRACT_32BITS(&bp->bp_vend);
387 if (ul != 0)
388 ND_PRINT((ndo, "\n\t Vendor-#0x%x", ul));
597 uint32_t ul;
717 while (len >= sizeof(ul)) {
720 ul = EXTRACT_32BITS(bp);
722 ul = htonl(ul);
723 ND_PRINT((ndo, "%s", ipaddr_string(ndo, &ul)));
725 ND_PRINT((ndo, "%d", ul));
727 ND_PRINT((ndo, "%u", ul));
728 bp += sizeof(ul);
729 len -= sizeof(ul);
736 while (len >= 2*sizeof(ul)) {
739 memcpy((char *)&ul, (const char *)bp, sizeof(ul));
740 ND_PRINT((ndo, "(%s:", ipaddr_string(ndo, &ul)));
741 bp += sizeof(ul);
742 memcpy((char *)&ul, (const char *)bp, sizeof(ul));
743 ND_PRINT((ndo, "%s)", ipaddr_string(ndo, &ul)));
744 bp += sizeof(ul);
745 len -= 2*sizeof(ul);
968 memcpy((char *)&ul, (const char *)bp, sizeof(ul));
969 ND_PRINT((ndo, ":%s)", ipaddr_string(ndo, &ul)));
970 bp += sizeof(ul);