Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:checksum

158     { ISIS_TLV_CHECKSUM,           "Checksum"},
243 { 0x2, "Incorrect checksum"},
568 uint16_t checksum, int checksum_offset, u_int length);
642 uint8_t checksum[2];
662 uint8_t checksum[2];
858 ND_PRINT((ndo, "\n\t%s PDU, hlen: %u, v: %u, lifetime: %u.%us, Segment PDU length: %u, checksum: 0x%04x",
1152 ND_PRINT((ndo, ", checksum: 0x%04x", EXTRACT_16BITS(esis_header->cksum)));
2153 * Clear checksum and lifetime prior to signature verification.
2160 header_lsp->checksum[0] = 0;
2161 header_lsp->checksum[1] = 0;
2197 need it for parsing the checksum TLV and authentication
2427 EXTRACT_16BITS(header_lsp->checksum)));
2430 EXTRACT_16BITS(header_lsp->checksum),
2938 ND_TCHECK2(tlv_lsp->checksum, 2);
2939 ND_PRINT((ndo, ", chksum: 0x%04x", EXTRACT_16BITS(tlv_lsp->checksum)));
2949 ND_PRINT((ndo, "\n\t checksum: 0x%04x ", EXTRACT_16BITS(tptr)));
2950 /* do not attempt to verify the checksum if it is zero
2952 * to avoid conflicts the checksum TLV is zeroed.
3152 uint16_t checksum, int checksum_offset, u_int length)
3156 /* do not attempt to verify the checksum if it is zero,
3160 if (!checksum
3171 if (checksum == calculated_checksum) {