| 34 | } |
| 35 | |
| 36 | void CheckError() |
| 37 | { |
| 38 | const char *fl = NULL, *fn = NULL, *da = NULL; |
| 39 | int ln = 0, fa = 0; |
| 40 | unsigned long er = ERR_get_error_all(&fl, &ln, &fn, &da, &fa); |
| 41 | |
| 42 | DbgPrintW("OpenSSL error(%lx): %s:%d, %s, %s, %d", er, fl, ln, fn, da, fa); |
| 43 | assert(!"OpenSSL error!"); |
| 44 | } |
| 45 | |
| 46 | void QRCodeDialog::HandleGatewayMessage(const std::string& payload) |
| 47 | { |
no test coverage detected