Home
last modified time | relevance | path

Searched refs:srtpProtectionProfiles (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dhandshake_messages.go32 srtpProtectionProfiles []uint16 member
66 eqUint16s(m.srtpProtectionProfiles, m1.srtpProtectionProfiles) &&
133 if len(m.srtpProtectionProfiles) > 0 {
134 extensionsLength += 2 + 2*len(m.srtpProtectionProfiles)
351 if len(m.srtpProtectionProfiles) > 0 {
355 profilesLen := 2 * len(m.srtpProtectionProfiles)
364 for _, p := range m.srtpProtectionProfiles {
592 m.srtpProtectionProfiles = make([]uint16, n)
595 m.srtpProtectionProfiles[i] = uint16(d[0])<<8 | uint16(d[1])
Dhandshake_server.go321 if hs.clientHello.srtpProtectionProfiles != nil {
324 for _, p2 := range hs.clientHello.srtpProtectionProfiles {
Dhandshake_client.go74 srtpProtectionProfiles: c.config.SRTPProtectionProfiles,