mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
* src/SendMessageQueue.h: Renamed to PeerInteraction.h
* src/SendMessageQueue.cc: Renamed to PeerInteraction.cc * src/PeerInteraction.h: New class. * src/PeerInteraction.cc: New class.
This commit is contained in:
parent
ef6c1d53a3
commit
bd5d11da3c
21 changed files with 135 additions and 132 deletions
|
@ -20,7 +20,7 @@
|
|||
*/
|
||||
/* copyright --> */
|
||||
#include "HaveMessage.h"
|
||||
#include "SendMessageQueue.h"
|
||||
#include "PeerInteraction.h"
|
||||
#include "PeerMessageUtil.h"
|
||||
#include "Util.h"
|
||||
|
||||
|
@ -30,7 +30,7 @@ void HaveMessage::receivedAction() {
|
|||
|
||||
void HaveMessage::send() {
|
||||
if(!peer->hasPiece(index)) {
|
||||
sendMessageQueue->getPeerConnection()->sendHave(index);
|
||||
peerInteraction->getPeerConnection()->sendHave(index);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue