HomeSort by: relevance | last modified time | path
    Searched defs:calc_check (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/netinet6/
sctp6_usrreq.c 119 u_int32_t check, calc_check; local in function:sctp6_input
174 calc_check = sctp_calculate_sum(m, &mlen, iphlen);
175 if (calc_check != check) {
178 printf("Bad CSUM on SCTP packet calc_check:%x check:%x m:%p mlen:%d iphlen:%d\n",
179 calc_check, check, m,
195 sh->checksum = calc_check;
  /src/sys/netinet/
sctp_input.c 4061 u_int32_t check, calc_check; local in function:sctp_input
4141 calc_check = sctp_calculate_sum(m, &mlen, iphlen);
4142 if (calc_check != check) {
4145 printf("Bad CSUM on SCTP packet calc_check:%x check:%x m:%p mlen:%d iphlen:%d\n",
4146 calc_check, check, m, mlen, iphlen);
4163 sh->checksum = calc_check;

Completed in 14 milliseconds