OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license | |
5 * that can be found in the LICENSE file in the root of the source | |
6 * tree. An additional intellectual property rights grant can be found | |
7 * in the file PATENTS. All contributing project authors may | |
8 * be found in the AUTHORS file in the root of the source tree. | |
9 */ | |
10 | |
11 #ifndef WEBRTC_API_ORTC_SRTPTRANSPORTINTERFACE_H_ | |
12 #define WEBRTC_API_ORTC_SRTPTRANSPORTINTERFACE_H_ | |
13 | |
14 #include "webrtc/api/ortc/rtptransportinterface.h" | |
15 #include "webrtc/api/rtcerror.h" | |
16 #include "webrtc/media/base/cryptoparams.h" | |
17 | |
18 namespace webrtc { | |
19 | |
20 // The subclass of the RtpTransport which uses the SRTP. The Keying information | |
Taylor Brandstetter
2017/02/24 18:57:57
nit: Don't need "the" before "SRTP"
Zhi Huang
2017/02/27 05:16:00
Done.
| |
21 // is explicitly passed in from the application. | |
Taylor Brandstetter
2017/02/24 18:57:57
May also want to note that this is similar in role
Zhi Huang
2017/02/27 05:16:00
Done.
| |
22 class SrtpTransportInterface : public RtpTransportInterface { | |
23 public: | |
24 virtual ~SrtpTransportInterface() {} | |
25 | |
26 // Set the SRTP keying material for sending stream from the applciation. | |
Taylor Brandstetter
2017/02/24 18:57:57
nit: "application" misspelled.
It may also be be
Zhi Huang
2017/02/27 05:16:00
Done.
| |
27 virtual RTCError SetSrtpSendKey(const cricket::CryptoParams& params) = 0; | |
28 | |
29 // Set the SRTP keying material for receiving stream from the application. | |
30 virtual RTCError SetSrtpReceiveKey(const cricket::CryptoParams& params) = 0; | |
31 }; | |
32 | |
33 } // namespace webrtc | |
34 | |
35 #endif // WEBRTC_API_ORTC_SRTPTRANSPORTINTERFACE_H_ | |
OLD | NEW |