| 278 | } |
| 279 | |
| 280 | void COutputStream::OnPreBytesSend(char* pszBuffer, size_t bufferSize, size_t& bytesToSend) |
| 281 | { |
| 282 | for( bytesToSend=0; m_spPimpl->m_itCurrentPos!=m_spPimpl->m_vBuffer.end() && bytesToSend < bufferSize; ++m_spPimpl->m_itCurrentPos, ++bytesToSend ) |
| 283 | pszBuffer[bytesToSend] = *m_spPimpl->m_itCurrentPos; |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | using namespace nsFTP; |