According to https://stackoverflow.com/a/13373392/5945317, the NSURLConnectionDelegate method
- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
identifies an SSL handshake.
- is this the only method that gets called during an SSL handshake?
- is this method called reliably on every SSL handshake (i.e. no false negatives)
- is this method only called during SSL handshake (i.e. no false positives)
Esp. regarding 3), I was surprised to see that it actually gets called again after about 2min, not as specified in other places (see link above) after 10mins.
Thanks guys!