ReceiveToFile Receives data from the current connection directly to a file. This function will not return until the connection is terminated or timed-out. Params name - name of file to copy received data into fileType - UTM_OM_WRITING:create/overwrite UTM_OM_APPEND:create/append [timeOut] - timeout in seconds Return UTE_SU
| 1686 | UTE_ABORTED - aborted |
| 1687 | *****************************************************/ |
| 1688 | int CUT_WSClient::ReceiveToFile(LPCTSTR name, OpenMsgType fileType, int timeOut){ |
| 1689 | CUT_FileDataSource ds(name); |
| 1690 | return Receive( ds , fileType, timeOut); |
| 1691 | } |
| 1692 | |
| 1693 | /*************************************************** |
| 1694 | GetMaxSend |
nothing calls this directly
no outgoing calls
no test coverage detected