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.go170 srtpProtectionProfiles []uint16 member
218 eqUint16s(m.srtpProtectionProfiles, m1.srtpProtectionProfiles) &&
416 if len(m.srtpProtectionProfiles) > 0 {
421 srtpProtectionProfiles := useSrtpExt.addU16LengthPrefixed()
422 for _, p := range m.srtpProtectionProfiles {
426 srtpProtectionProfiles.addU8(byte(p >> 8))
427 srtpProtectionProfiles.addU8(byte(p))
801 m.srtpProtectionProfiles = make([]uint16, n)
804 m.srtpProtectionProfiles[i] = uint16(d[0])<<8 | uint16(d[1])
1195 srtpProtectionProfiles := extension.addU16LengthPrefixed()
[all …]
Dhandshake_server.go1270 if hs.clientHello.srtpProtectionProfiles != nil {
1273 for _, p2 := range hs.clientHello.srtpProtectionProfiles {
Dhandshake_client.go95 srtpProtectionProfiles: c.config.SRTPProtectionProfiles,