summaryrefslogtreecommitdiffstats
blob: b4d2467af28d9b250aaef97de960077a37d9e4f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (c) 2015 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <boost/bind.hpp>

#include <Swiften/FileTransfer/IBBSendTransportSession.h>

namespace Swift {

IBBSendTransportSession::IBBSendTransportSession(boost::shared_ptr<IBBSendSession> session) : session(session) {
	finishedConnection = session->onFinished.connect(boost::bind(boost::ref(onFinished), _1));
	bytesSentConnection = session->onBytesSent.connect(boost::bind(boost::ref(onBytesSent), _1));
}

IBBSendTransportSession::~IBBSendTransportSession() {
}

 void IBBSendTransportSession::start() {
	session->start();
}

void IBBSendTransportSession::stop() {
	session->stop();
}

}