| 1981 | |
| 1982 | |
| 1983 | void cClientHandle::SendDisconnect(const AString & a_Reason) |
| 1984 | { |
| 1985 | if (!m_HasSentDC) |
| 1986 | { |
| 1987 | LOGD("Sending a DC: \"%s\"", StripColorCodes(a_Reason).c_str()); |
| 1988 | m_Protocol->SendDisconnect(a_Reason); |
| 1989 | m_HasSentDC = true; |
| 1990 | } |
| 1991 | } |
| 1992 | |
| 1993 | |
| 1994 |
nothing calls this directly
no test coverage detected