---------------------------------------------------------------------------
| 154 | } |
| 155 | //--------------------------------------------------------------------------- |
| 156 | AnsiString MSocket::GetRemoteAddrPort(void) |
| 157 | { |
| 158 | AnsiString rv(inet_ntoa(destAddr.sin_addr)); |
| 159 | rv += ":" + IntToStr(htons(destAddr.sin_port)); |
| 160 | return rv; |
| 161 | } |
| 162 | //--------------------------------------------------------------------------- |
| 163 | AnsiString MSocket::GetErrorMessage(void) |
| 164 | { |
nothing calls this directly
no outgoing calls
no test coverage detected