* 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:
Tatsuhiro Tsujikawa 2006-05-10 13:10:51 +00:00
parent ef6c1d53a3
commit bd5d11da3c
21 changed files with 135 additions and 132 deletions

View file

@ -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);
}
}