engage-engine 1.240.90800005 → 1.241.90810007
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/ConfigurationObjects.h +0 -7
- package/include/EngageInterface.h +1 -1
- package/lib/darwin.x64/libengage-shared.dylib +0 -0
- package/lib/linux.x64/libengage-shared.so +0 -0
- package/lib/win32.ia32/engage-shared.dll +0 -0
- package/lib/win32.ia32/engage-shared.lib +0 -0
- package/lib/win32.ia32/rts-fips.dll +0 -0
- package/lib/win32.x64/engage-shared.dll +0 -0
- package/lib/win32.x64/engage-shared.lib +0 -0
- package/lib/win32.x64/rts-fips.dll +0 -0
- package/package.json +1 -1
|
@@ -4630,9 +4630,6 @@ namespace AppConfigurationObjects
|
|
|
4630
4630
|
/** @brief [Optional, Default: 10] Specifies the number fo seconds to wait after Rallypoint connection failure to switch to multicast operation. */
|
|
4631
4631
|
int multicastFailoverSecs;
|
|
4632
4632
|
|
|
4633
|
-
/** @brief [Optional, Default: false] Set this to true to have event notifications fire when human speech is detected in incoming audio streams. */
|
|
4634
|
-
bool enableRxVad;
|
|
4635
|
-
|
|
4636
4633
|
/** @brief The network address for receiving RTCP presencing packets */
|
|
4637
4634
|
NetworkAddress rtcpPresenceRx;
|
|
4638
4635
|
|
|
@@ -4747,8 +4744,6 @@ namespace AppConfigurationObjects
|
|
|
4747
4744
|
|
|
4748
4745
|
rtcpPresenceRx.clear();
|
|
4749
4746
|
|
|
4750
|
-
enableRxVad = false;
|
|
4751
|
-
|
|
4752
4747
|
presenceGroupAffinities.clear();
|
|
4753
4748
|
disablePacketEvents = false;
|
|
4754
4749
|
|
|
@@ -4819,7 +4814,6 @@ namespace AppConfigurationObjects
|
|
|
4819
4814
|
TOJSON_IMPL(enableMulticastFailover),
|
|
4820
4815
|
TOJSON_IMPL(multicastFailoverSecs),
|
|
4821
4816
|
TOJSON_IMPL(rtcpPresenceRx),
|
|
4822
|
-
TOJSON_IMPL(enableRxVad),
|
|
4823
4817
|
TOJSON_IMPL(presenceGroupAffinities),
|
|
4824
4818
|
TOJSON_IMPL(disablePacketEvents),
|
|
4825
4819
|
TOJSON_IMPL(rfc4733RtpPayloadId),
|
|
@@ -4906,7 +4900,6 @@ namespace AppConfigurationObjects
|
|
|
4906
4900
|
getOptional<bool>("enableMulticastFailover", p.enableMulticastFailover, j, false);
|
|
4907
4901
|
getOptional<int>("multicastFailoverSecs", p.multicastFailoverSecs, j, 10);
|
|
4908
4902
|
getOptional<NetworkAddress>("rtcpPresenceRx", p.rtcpPresenceRx, j);
|
|
4909
|
-
getOptional<bool>("enableRxVad", p.enableRxVad, j, false);
|
|
4910
4903
|
getOptional<std::vector<std::string>>("presenceGroupAffinities", p.presenceGroupAffinities, j);
|
|
4911
4904
|
getOptional<bool>("disablePacketEvents", p.disablePacketEvents, j, false);
|
|
4912
4905
|
getOptional<int>("rfc4733RtpPayloadId", p.rfc4733RtpPayloadId, j, 0);
|
|
@@ -1387,7 +1387,7 @@ ENGAGE_API const char * _Nonnull engageGetCertStoreCertificatePem(const char * _
|
|
|
1387
1387
|
* @param pem The PEM for which the descriptor is desired.
|
|
1388
1388
|
* @return JSON
|
|
1389
1389
|
*/
|
|
1390
|
-
ENGAGE_API const char * _Nonnull
|
|
1390
|
+
ENGAGE_API const char * _Nonnull engageGetCertificateDescriptorFromPem(const char * _Nonnull pem);
|
|
1391
1391
|
|
|
1392
1392
|
|
|
1393
1393
|
/**
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED