| 132 | } |
| 133 | |
| 134 | inline void SendTo(TSocketHolder& s) { |
| 135 | Sign(); |
| 136 | |
| 137 | if (sendto(s, Data.data(), Data.size(), 0, Addr->Addr(), Addr->Len()) < 0) { |
| 138 | Cdbg << LastSystemErrorText() << Endl; |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | IRemoteAddrPtr Addr; |
| 143 | TBuffer Data; |
no test coverage detected