Lines Matching refs:ct
265 int ct=0; in ssl_add_clienthello_use_srtp_ext() local
271 ct=sk_SRTP_PROTECTION_PROFILE_num(clnt); /* -1 if clnt == 0 */ in ssl_add_clienthello_use_srtp_ext()
275 if(ct==0) in ssl_add_clienthello_use_srtp_ext()
281 if((2 + ct*2 + 1) > maxlen) in ssl_add_clienthello_use_srtp_ext()
288 s2n(ct * 2, p); in ssl_add_clienthello_use_srtp_ext()
289 for(i=0;i<ct;i++) in ssl_add_clienthello_use_srtp_ext()
299 *len=2 + ct*2 + 1; in ssl_add_clienthello_use_srtp_ext()
309 int ct; in ssl_parse_clienthello_use_srtp_ext() local
324 n2s(d, ct); in ssl_parse_clienthello_use_srtp_ext()
328 if(ct%2) in ssl_parse_clienthello_use_srtp_ext()
336 if(len < (ct + 1)) in ssl_parse_clienthello_use_srtp_ext()
346 while(ct) in ssl_parse_clienthello_use_srtp_ext()
349 ct-=2; in ssl_parse_clienthello_use_srtp_ext()
434 int ct; in ssl_parse_serverhello_use_srtp_ext() local
446 n2s(d, ct); in ssl_parse_serverhello_use_srtp_ext()
447 if(ct!=2) in ssl_parse_serverhello_use_srtp_ext()