summaryrefslogtreecommitdiffstats
blob: 1216a798edea0298fe519461b91f528b1ac86d1d (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
30
31
32
33
34
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "Swiften/StreamStack/OpenSSLLayer.h"

namespace Swift {

OpenSSLLayer::OpenSSLLayer() {
	context_.onDataForNetwork.connect(onWriteData);
	context_.onDataForApplication.connect(onDataRead);
	context_.onConnected.connect(onConnected);
	context_.onError.connect(onError);
}

void OpenSSLLayer::connect() {
	context_.connect();
}

void OpenSSLLayer::writeData(const ByteArray& data) {
	context_.handleDataFromApplication(data);
}

void OpenSSLLayer::handleDataRead(const ByteArray& data) {
	context_.handleDataFromNetwork(data);
}

bool OpenSSLLayer::setClientCertificate(const PKCS12Certificate& certificate) {
	return context_.setClientCertificate(certificate);
}

}