You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.../ASIHTTPRequest.m:1215:70: 'kCFStreamSSLAllowsExpiredCertificates' is deprecated: first deprecated in iOS 4.0
.../ASIHTTPRequest.m:1216:70: 'kCFStreamSSLAllowsAnyRoot' is deprecated: first deprecated in iOS 4.0
According to the comments in CFNetwork/CFSocketStream.h, where these const are declared, it's enough to use only one kCFStreamSSLValidatesCertificateChain param.
So as the kCFStreamSSLValidatesCertificateChain is set to @NO in the same piece of code where deprecated consts are used, will the fix be to remove deprecated consts?
The text was updated successfully, but these errors were encountered:
According to the comments in
CFNetwork/CFSocketStream.h
, where these const are declared, it's enough to use only onekCFStreamSSLValidatesCertificateChain
param.So as the
kCFStreamSSLValidatesCertificateChain
is set to@NO
in the same piece of code where deprecated consts are used, will the fix be to remove deprecated consts?The text was updated successfully, but these errors were encountered: