Searched refs:nStartCryptFromByte (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DEncryptedStreamSocket.cpp684 int CEncryptedStreamSocket::SendNegotiatingData(const void* lpBuf, uint32_t nBufLen, uint32_t nStartCryptFromByte, bool bDelaySend) argument
687 wxASSERT( nStartCryptFromByte <= nBufLen );
698 if (nStartCryptFromByte > 0) {
699 memcpy(pBuffer, lpBuf, nStartCryptFromByte);
702 if (nBufLen - nStartCryptFromByte > 0) {
703 //printf("Crypting negotiation data on %s starting on byte %i\n", (const char*) unicode2char(DbgGetIPString()), nStartCryptFromByte);
705 m_pfiSendBuffer.RC4Crypt((uint8*)lpBuf + nStartCryptFromByte, pBuffer + nStartCryptFromByte, nBufLen - nStartCryptFromByte);
719 nStartCryptFromByte
[all...]
H A DEncryptedStreamSocket.h127 int SendNegotiatingData(const void *lpBuf, uint32_t nBufLen, uint32_t nStartCryptFromByte = 0, bool bDelaySend = false);

Completed in 99 milliseconds