Lines Matching refs:cslen
463 uint_t sidlen, cslen, cmlen; in kssl_handle_client_hello() local
516 cslen = ((uint_t)mp->b_rptr[0] << 8) + (uint_t)mp->b_rptr[1]; in kssl_handle_client_hello()
518 ch_msglen += cslen; in kssl_handle_client_hello()
533 if (cslen & 0x1) { in kssl_handle_client_hello()
535 uint_t, cslen); in kssl_handle_client_hello()
543 for (j = 0; j < cslen; j += 2) { in kssl_handle_client_hello()
579 for (j = 0; j < cslen; j += 2) { in kssl_handle_client_hello()
635 mp->b_rptr += cslen; in kssl_handle_client_hello()
2081 uint_t cslen; in kssl_handle_v2client_hello() local
2112 cslen = ((uint_t)mp->b_rptr[0] << 8) + (uint_t)mp->b_rptr[1]; in kssl_handle_v2client_hello()
2115 if (cslen % 3 != 0) { in kssl_handle_v2client_hello()
2116 DTRACE_PROBE1(kssl_err__cipher_suites_len_error, uint_t, cslen); in kssl_handle_v2client_hello()
2126 ch_recsz += cslen + sidlen + randlen; in kssl_handle_v2client_hello()
2133 rand = suitesp + cslen + sidlen; in kssl_handle_v2client_hello()
2142 for (j = 0; j < cslen; j += 3) { in kssl_handle_v2client_hello()