Searched refs:SrtpTransport (Results 1 – 12 of 12) sorted by relevance
/external/webrtc/pc/ |
D | srtp_transport.cc | 36 SrtpTransport::SrtpTransport(bool rtcp_mux_enabled, in SrtpTransport() function in webrtc::SrtpTransport 40 RTCError SrtpTransport::SetSrtpSendKey(const cricket::CryptoParams& params) { in SetSrtpSendKey() 80 RTCError SrtpTransport::SetSrtpReceiveKey(const cricket::CryptoParams& params) { in SetSrtpReceiveKey() 120 bool SrtpTransport::SendRtpPacket(rtc::CopyOnWriteBuffer* packet, in SendRtpPacket() 176 bool SrtpTransport::SendRtcpPacket(rtc::CopyOnWriteBuffer* packet, in SendRtcpPacket() 201 void SrtpTransport::OnRtpPacketReceived(rtc::CopyOnWriteBuffer packet, in OnRtpPacketReceived() 229 void SrtpTransport::OnRtcpPacketReceived(rtc::CopyOnWriteBuffer packet, in OnRtcpPacketReceived() 250 void SrtpTransport::OnNetworkRouteChanged( in OnNetworkRouteChanged() 263 void SrtpTransport::OnWritableState( in OnWritableState() 268 bool SrtpTransport::SetRtpParams(int send_cs, in SetRtpParams() [all …]
|
D | srtp_transport.h | 38 class SrtpTransport : public RtpTransport { 40 SrtpTransport(bool rtcp_mux_enabled, const FieldTrialsView& field_trials); 42 virtual ~SrtpTransport() = default;
|
D | srtp_transport_unittest.cc | 62 std::make_unique<SrtpTransport>(rtcp_mux_enabled, field_trials_); in SrtpTransportTest() 64 std::make_unique<SrtpTransport>(rtcp_mux_enabled, field_trials_); in SrtpTransportTest() 95 void TestRtpAuthParams(SrtpTransport* transport, const std::string& cs) { in TestRtpAuthParams() 329 std::unique_ptr<SrtpTransport> srtp_transport1_; 330 std::unique_ptr<SrtpTransport> srtp_transport2_;
|
D | jsep_transport.h | 99 std::unique_ptr<webrtc::SrtpTransport> sdes_transport, 302 const std::unique_ptr<webrtc::SrtpTransport> sdes_transport_;
|
D | dtls_srtp_transport.cc | 32 : SrtpTransport(rtcp_mux_enabled, field_trials) {} in DtlsSrtpTransport() 78 SrtpTransport::SetRtcpMuxEnabled(enable); in SetRtcpMuxEnabled()
|
D | dtls_srtp_transport.h | 33 class DtlsSrtpTransport : public SrtpTransport {
|
D | jsep_transport_unittest.cc | 88 std::unique_ptr<webrtc::SrtpTransport> CreateSdesTransport( in CreateSdesTransport() 91 auto srtp_transport = std::make_unique<webrtc::SrtpTransport>( in CreateSdesTransport() 132 std::unique_ptr<webrtc::SrtpTransport> sdes_transport; in CreateJsepTransport2() 195 webrtc::SrtpTransport* sdes_transport_ = nullptr;
|
D | jsep_transport_controller.cc | 478 std::unique_ptr<webrtc::SrtpTransport> 484 auto srtp_transport = std::make_unique<webrtc::SrtpTransport>( in CreateSdesTransport() 1048 std::unique_ptr<SrtpTransport> sdes_transport; in MaybeCreateJsepTransport()
|
D | jsep_transport_controller.h | 407 std::unique_ptr<webrtc::SrtpTransport> CreateSdesTransport(
|
D | jsep_transport.cc | 79 std::unique_ptr<webrtc::SrtpTransport> sdes_transport, in JsepTransport()
|
D | dtls_srtp_transport_unittest.cc | 40 using webrtc::SrtpTransport;
|
/external/webrtc/pc/g3doc/ |
D | srtp.md | 37 provided by `SrtpTransport` or `DtlsSrtpTransport` in the [`SetSend`][4] and 45 ## webrtc::SrtpTransport and webrtc::DtlsSrtpTransport 47 The [`webrtc::SrtpTransport`][10] class is controlling the `SrtpSession` 52 [`webrtc:DtlsSrtpTransport`][11] is a subclass of the `SrtpTransport` that
|