forked from finos/SymphonyMediaBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.cpp
64 lines (53 loc) · 2.09 KB
/
utils.cpp
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
#include "utils.h"
namespace api
{
namespace utils
{
api::utils::EnumRef<ice::IceSession::State> iceStates[] = {{"unknown", ice::IceSession::State::LAST},
{"IDLE", ice::IceSession::State::IDLE},
{"GATHERING", ice::IceSession::State::GATHERING},
{"READY", ice::IceSession::State::READY},
{"CONNECTING", ice::IceSession::State::CONNECTING},
{"CONNECTED", ice::IceSession::State::CONNECTED},
{"FAILED", ice::IceSession::State::FAILED}};
const char* toString(ice::IceSession::State state)
{
return toString(state, iceStates);
}
ice::IceSession::State stringToIceState(const std::string& state)
{
return fromString(state, iceStates);
}
api::utils::EnumRef<transport::SrtpClient::State> dtlsStates[] = {{"unknown", transport::SrtpClient::State::LAST},
{"IDLE", transport::SrtpClient::State::IDLE},
{"READY", transport::SrtpClient::State::READY},
{"CONNECTED", transport::SrtpClient::State::CONNECTED},
{"CONNECTING", transport::SrtpClient::State::CONNECTING},
{"FAILED", transport::SrtpClient::State::FAILED}};
const char* toString(transport::SrtpClient::State state)
{
return toString(state, dtlsStates);
}
transport::SrtpClient::State stringToDtlsState(const std::string& state)
{
return fromString(state, dtlsStates);
}
api::utils::EnumRef<srtp::Profile> sdesProfiles[] = {{"", srtp::Profile::NULL_CIPHER},
{"AES_128_CM_HMAC_SHA1_80", srtp::Profile::AES128_CM_SHA1_80},
{"AES_128_CM_HMAC_SHA1_32", srtp::Profile::AES128_CM_SHA1_32},
{"AES_256_CM_HMAC_SHA1_80", srtp::Profile::AES_256_CM_SHA1_80},
{"AES_256_CM_HMAC_SHA1_32", srtp::Profile::AES_256_CM_SHA1_32},
{"AES_192_CM_HMAC_SHA1_80", srtp::Profile::AES_192_CM_SHA1_80},
{"AES_192_CM_HMAC_SHA1_32", srtp::Profile::AES_192_CM_SHA1_32},
{"AEAD_AES_128_GCM", srtp::Profile::AEAD_AES_128_GCM},
{"AEAD_AES_256_GCM", srtp::Profile::AEAD_AES_256_GCM}};
const char* toString(srtp::Profile profile)
{
return toString(profile, sdesProfiles);
}
srtp::Profile stringToSrtpProfile(const std::string& profile)
{
return fromString(profile, sdesProfiles);
}
} // namespace utils
} // namespace api