Lines Matching refs:profile_ids
1648 CBB contents, profile_ids; in ext_srtp_add_clienthello() local
1651 !CBB_add_u16_length_prefixed(&contents, &profile_ids)) { in ext_srtp_add_clienthello()
1656 if (!CBB_add_u16(&profile_ids, profile->id)) { in ext_srtp_add_clienthello()
1680 CBS profile_ids, srtp_mki; in ext_srtp_parse_serverhello() local
1682 if (!CBS_get_u16_length_prefixed(contents, &profile_ids) || in ext_srtp_parse_serverhello()
1683 !CBS_get_u16(&profile_ids, &profile_id) || in ext_srtp_parse_serverhello()
1684 CBS_len(&profile_ids) != 0 || in ext_srtp_parse_serverhello()
1721 CBS profile_ids, srtp_mki; in ext_srtp_parse_clienthello() local
1722 if (!CBS_get_u16_length_prefixed(contents, &profile_ids) || in ext_srtp_parse_clienthello()
1723 CBS_len(&profile_ids) < 2 || in ext_srtp_parse_clienthello()
1737 CBS_init(&profile_ids_tmp, CBS_data(&profile_ids), CBS_len(&profile_ids)); in ext_srtp_parse_clienthello()
1761 CBB contents, profile_ids; in ext_srtp_add_serverhello() local
1764 !CBB_add_u16_length_prefixed(&contents, &profile_ids) || in ext_srtp_add_serverhello()
1765 !CBB_add_u16(&profile_ids, ssl->s3->srtp_profile->id) || in ext_srtp_add_serverhello()