| 217 | DIR_IN |
| 218 | }; |
| 219 | struct TTransferPurpose { |
| 220 | EDir Dir; |
| 221 | TGUID Guid; |
| 222 | TTransferPurpose() |
| 223 | : Dir(DIR_OUT) |
| 224 | { |
| 225 | } |
| 226 | TTransferPurpose(EDir dir, TGUID guid) |
| 227 | : Dir(dir) |
| 228 | , Guid(guid) |
| 229 | { |
| 230 | } |
| 231 | }; |
| 232 | |
| 233 | struct TSendRequest: public TWithCustomAllocator { |
| 234 | TConnectionAddress Address; |
no outgoing calls
no test coverage detected