| 708 | } |
| 709 | |
| 710 | int CBackendVnc::getX509File(std::string *ca, std::string *crl) |
| 711 | { |
| 712 | auto &user = m_pPara->m_Net.m_User; |
| 713 | if(ca) |
| 714 | *ca = user.GetCAFile().toStdString().c_str(); |
| 715 | if(crl) |
| 716 | *crl = user.GetCRLFile().toStdString().c_str(); |
| 717 | return 0; |
| 718 | } |
| 719 | |
| 720 | bool CBackendVnc::showMsgBox(rfb::MsgBoxFlags flags, const char *title, const char *text) |
| 721 | { |
nothing calls this directly
no test coverage detected