| 81 | } |
| 82 | |
| 83 | virtual void process(NetConnection *connection) |
| 84 | { |
| 85 | U32 i; |
| 86 | for(i = 0; i < nameCount; i++) |
| 87 | if(connection->startSendingFile(mFileNames[i])) |
| 88 | break; |
| 89 | if(i == nameCount) |
| 90 | connection->startSendingFile(NULL); // none of the files were sent |
| 91 | } |
| 92 | |
| 93 | DECLARE_CONOBJECT(FileDownloadRequestEvent); |
| 94 |
nothing calls this directly
no test coverage detected