15 lines
210 B
C++
15 lines
210 B
C++
#include "platform_api/network_tls_policy.h"
|
|
|
|
namespace pp::platform {
|
|
|
|
bool default_disables_network_tls_verification() noexcept
|
|
{
|
|
#if defined(__ANDROID__)
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
}
|