Searched refs:m_control_queue (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 DEMSocket.cpp136 DeleteContents(m_control_queue);
354 m_control_queue.push_back(packet);
495 (!m_control_queue.empty() || !m_standard_queue.empty() || sendbuffer != NULL) && // there must exist something to send
498 (sendbuffer == NULL && !m_control_queue.empty()) || // There's a control packet in queue, and we are not currently sending anything, so we will handle the control packet next
500 (sendbuffer != NULL && m_currentPacket_is_controlpacket == false && bWasLongTimeSinceSend && !m_control_queue.empty() && m_standard_queue.empty() && (sentStandardPacketBytesThisCall + sentControlPacketBytesThisCall) < minFragSize) // We have waited to long to clean the current packet (which may be a standard packet that is in the way). Proceed no matter what the value of onlyAllowedToSendControlPacket.
507 if(!m_control_queue.empty()) {
510 curPacket = m_control_queue.front();
511 m_control_queue.pop_front();
630 if(onlyAllowedToSendControlPacket && (!m_control_queue.empty() || (sendbuffer != NULL && m_currentPacket_is_controlpacket))) {
682 if (((sendbuffer && !m_currentPacket_is_controlpacket)) && !m_control_queue
[all...]
H A DEMSocket.h117 CPacketQueue m_control_queue; member in class:CEMSocket

Completed in 106 milliseconds