Merge pull request #51 from ucloud/bugfix_remove_unnecessary_tls_define

remove unnecessary tls define
This commit is contained in:
ethanDu1 2020-08-12 16:40:04 +08:00 committed by GitHub
commit 1b4337f789
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 9 deletions

View File

@ -74,23 +74,15 @@ static const char *iot_https_ca_crt = \
"CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4=\r\n"
"-----END CERTIFICATE-----\r\n"
};
#endif
const char *iot_ca_get() {
#ifdef SUPPORT_TLS
return iot_ca_crt;
#else
return NULL;
#endif
}
const char *iot_https_ca_get() {
#ifdef SUPPORT_TLS
return iot_https_ca_crt;
#else
return NULL;
#endif
}
#endif
#ifdef __cplusplus
}