summaryrefslogtreecommitdiffstats
blob: e5a90db83a9e9a7dad3af324f76e04e90a8dae1c (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
/*
 * Copyright (c) 2013 Remko Tronçon
 * Licensed under the GNU General Public License.
 * See the COPYING file for more information.
 */

#pragma once

#include <Swiften/Base/Override.h>
#include <Swiften/Base/API.h>
#include <Swiften/FileTransfer/FileTransferError.h>
#include <Swiften/Base/boost_bsignals.h>

namespace Swift {
	class SWIFTEN_API TransportSession {
		public:
			virtual ~TransportSession();

			virtual void start() = 0;
			virtual void stop() = 0;

			boost::signal<void (size_t)> onBytesSent;
			boost::signal<void (boost::optional<FileTransferError>)> onFinished;
	};
}