5514 Private slot to handle SSL errors. |
5514 Private slot to handle SSL errors. |
5515 |
5515 |
5516 @param reply reference to the reply object (QNetworkReply) |
5516 @param reply reference to the reply object (QNetworkReply) |
5517 @param errors list of SSL errors (list of QSslError) |
5517 @param errors list of SSL errors (list of QSslError) |
5518 """ |
5518 """ |
5519 ignore = self.__sslErrorHandler.sslErrorsReply(reply, errors)[0] |
5519 ignored = self.__sslErrorHandler.sslErrorsReply(reply, errors)[0] |
5520 if not ignore: |
5520 if ignored == E5SslErrorHandler.NotIgnored: |
5521 self.__downloadCancelled = True |
5521 self.__downloadCancelled = True |
5522 |
5522 |
5523 ####################################### |
5523 ####################################### |
5524 ## Below are methods for various checks |
5524 ## Below are methods for various checks |
5525 ####################################### |
5525 ####################################### |