| 197 | DIR_IN |
| 198 | }; |
| 199 | struct TTransferPurpose { |
| 200 | EDir Dir; |
| 201 | TGUID Guid; |
| 202 | TTransferPurpose() |
| 203 | : Dir(DIR_OUT) |
| 204 | { |
| 205 | } |
| 206 | TTransferPurpose(EDir dir, TGUID guid) |
| 207 | : Dir(dir) |
| 208 | , Guid(guid) |
| 209 | { |
| 210 | } |
| 211 | }; |
| 212 | |
| 213 | struct TSendRequest { |
| 214 | TUdpAddress Addr; |
no outgoing calls
no test coverage detected