| 171 | |
| 172 | #ifdef _unix_ |
| 173 | void TAbstractSocket::Reset(const TAbstractSocket& rhv) { |
| 174 | Close(); |
| 175 | S = dup(rhv.S); |
| 176 | SelfAddress = rhv.SelfAddress; |
| 177 | } |
| 178 | #endif |
| 179 | |
| 180 | int TAbstractSocket::CreateSocket(int netPort) { |
no test coverage detected