-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathdtlssrtptransport.hpp
68 lines (52 loc) · 1.6 KB
/
dtlssrtptransport.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* Copyright (c) 2020 Paul-Louis Ageneau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#ifndef RTC_IMPL_DTLS_SRTP_TRANSPORT_H
#define RTC_IMPL_DTLS_SRTP_TRANSPORT_H
#include "common.hpp"
#include "dtlstransport.hpp"
#if RTC_ENABLE_MEDIA
#if RTC_SYSTEM_SRTP
#include <srtp2/srtp.h>
#else
#include "srtp.h"
#endif
#include <atomic>
namespace rtc::impl {
class DtlsSrtpTransport final : public DtlsTransport {
public:
static void Init();
static void Cleanup();
static bool IsGcmSupported();
DtlsSrtpTransport(shared_ptr<IceTransport> lower, certificate_ptr certificate,
optional<size_t> mtu, CertificateFingerprint::Algorithm fingerprintAlgorithm,
verifier_callback verifierCallback, message_callback srtpRecvCallback,
state_callback stateChangeCallback);
~DtlsSrtpTransport();
bool sendMedia(message_ptr message);
private:
void recvMedia(message_ptr message);
bool demuxMessage(message_ptr message) override;
void postHandshake() override;
#if !USE_GNUTLS && !USE_MBEDTLS
struct ProfileParams {
srtp_profile_t srtpProfile;
size_t keySize;
size_t saltSize;
};
ProfileParams getProfileParamsFromName(string_view name);
#endif
message_callback mSrtpRecvCallback;
srtp_t mSrtpIn, mSrtpOut;
std::atomic<bool> mInitDone = false;
std::vector<unsigned char> mClientSessionKey;
std::vector<unsigned char> mServerSessionKey;
std::mutex sendMutex;
};
} // namespace rtc::impl
#endif
#endif