Lines Matching refs:ct
266 int ct=0; in ssl_add_clienthello_use_srtp_ext() local
272 ct=sk_SRTP_PROTECTION_PROFILE_num(clnt); /* -1 if clnt == 0 */ in ssl_add_clienthello_use_srtp_ext()
276 if(ct==0) in ssl_add_clienthello_use_srtp_ext()
282 if((2 + ct*2 + 1) > maxlen) in ssl_add_clienthello_use_srtp_ext()
289 s2n(ct * 2, p); in ssl_add_clienthello_use_srtp_ext()
290 for(i=0;i<ct;i++) in ssl_add_clienthello_use_srtp_ext()
300 *len=2 + ct*2 + 1; in ssl_add_clienthello_use_srtp_ext()
310 int ct; in ssl_parse_clienthello_use_srtp_ext() local
325 n2s(d, ct); in ssl_parse_clienthello_use_srtp_ext()
329 if(ct%2) in ssl_parse_clienthello_use_srtp_ext()
337 if(len < (ct + 1)) in ssl_parse_clienthello_use_srtp_ext()
347 while(ct) in ssl_parse_clienthello_use_srtp_ext()
350 ct-=2; in ssl_parse_clienthello_use_srtp_ext()
435 int ct; in ssl_parse_serverhello_use_srtp_ext() local
447 n2s(d, ct); in ssl_parse_serverhello_use_srtp_ext()
448 if(ct!=2) in ssl_parse_serverhello_use_srtp_ext()