| 41 | }; |
| 42 | |
| 43 | struct TPingResult { |
| 44 | int CompId; |
| 45 | float Delay; |
| 46 | |
| 47 | TPingResult() |
| 48 | : CompId(-1) |
| 49 | , Delay(0) |
| 50 | { |
| 51 | } |
| 52 | TPingResult(int compId, float delay) |
| 53 | : CompId(compId) |
| 54 | , Delay(delay) |
| 55 | { |
| 56 | } |
| 57 | }; |
| 58 | |
| 59 | struct TAllPingResults { |
| 60 | TVector<TPingResult> PingResults; |