* Dispatcher::checkSend() bug: getOutboundCount() should only count non-future packets

이 커밋은 다음에 포함됨:
Scott Powell
2025-05-14 16:50:11 +10:00
부모 a56e9ef62f
커밋 e291b57a07
6개의 변경된 파일17개의 추가작업 그리고 7개의 파일을 삭제
+1 -1
파일 보기
@@ -78,7 +78,7 @@ public:
virtual void queueOutbound(Packet* packet, uint8_t priority, uint32_t scheduled_for) = 0;
virtual Packet* getNextOutbound(uint32_t now) = 0; // by priority
virtual int getOutboundCount() const = 0;
virtual int getOutboundCount(uint32_t now) const = 0;
virtual int getFreeCount() const = 0;
virtual Packet* getOutboundByIdx(int i) = 0;
virtual Packet* removeOutboundByIdx(int i) = 0;