---------------------------------------------------------------------------
| 137 | } |
| 138 | //--------------------------------------------------------------------------- |
| 139 | AnsiString MSocket::GetLocalAddrPort(void) |
| 140 | { |
| 141 | AnsiString rv(inet_ntoa(localAddr.sin_addr)); |
| 142 | rv += ":" + IntToStr(htons(localAddr.sin_port)); |
| 143 | return rv; |
| 144 | } |
| 145 | //--------------------------------------------------------------------------- |
| 146 | AnsiString MSocket::GetRemoteAddr(void) |
| 147 | { |
nothing calls this directly
no outgoing calls
no test coverage detected