Lines Matching refs:suitesp

464 	uchar_t *suitesp;  in kssl_handle_client_hello()  local
538 suitesp = mp->b_rptr; in kssl_handle_client_hello()
547 (uint16_t)((suitesp[j] << 8) + suitesp[j+1])); in kssl_handle_client_hello()
549 if (suitesp[j] == ((suite >> 8) & 0xff) && in kssl_handle_client_hello()
550 suitesp[j + 1] == (suite & 0xff)) { in kssl_handle_client_hello()
558 if (suitesp[j] == ((SSL_SCSV >> 8) & 0xff) && in kssl_handle_client_hello()
559 suitesp[j + 1] == (SSL_SCSV & 0xff)) { in kssl_handle_client_hello()
582 (uint16_t)((suitesp[j] << 8) + suitesp[j+1])); in kssl_handle_client_hello()
584 if (suitesp[j] == ((suite >> 8) & 0xff) && in kssl_handle_client_hello()
585 suitesp[j + 1] == (suite & 0xff)) { in kssl_handle_client_hello()
593 if (suitesp[j] == ((SSL_SCSV >> 8) & 0xff) && in kssl_handle_client_hello()
594 suitesp[j + 1] == (SSL_SCSV & 0xff)) { in kssl_handle_client_hello()
2082 uchar_t *suitesp; in kssl_handle_v2client_hello() local
2132 suitesp = mp->b_rptr; in kssl_handle_v2client_hello()
2133 rand = suitesp + cslen + sidlen; in kssl_handle_v2client_hello()
2146 (uint16_t)((suitesp[j+1] << 8) + suitesp[j+2])); in kssl_handle_v2client_hello()
2147 if (suitesp[j] != 0) { in kssl_handle_v2client_hello()
2152 if (suitesp[j + 1] == ((suite >> 8) & 0xff) && in kssl_handle_v2client_hello()
2153 suitesp[j + 2] == (suite & 0xff)) { in kssl_handle_v2client_hello()
2161 if (suitesp[j + 1] == ((SSL_SCSV >> 8) & 0xff) && in kssl_handle_v2client_hello()
2162 suitesp[j + 2] == (SSL_SCSV & 0xff)) { in kssl_handle_v2client_hello()