summaryrefslogtreecommitdiffstats
blob: 20edf1598630282fcbf6357b801fa1d204f10413 (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
35
36
37
38
39
40
41
42
/*
 * Copyright (c) 2013-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Jingle/AbstractJingleSessionListener.h>

#include <Swiften/Base/Log.h>

using namespace Swift;

void AbstractJingleSessionListener::handleSessionAcceptReceived(const JingleContentID&, std::shared_ptr<JingleDescription>, std::shared_ptr<JingleTransportPayload>) {
    SWIFT_LOG(warning) << "Unimplemented" << std::endl;
}

void AbstractJingleSessionListener::handleSessionInfoReceived(std::shared_ptr<JinglePayload>) {
    SWIFT_LOG(warning) << "Unimplemented" << std::endl;
}

void AbstractJingleSessionListener::handleSessionTerminateReceived(boost::optional<JinglePayload::Reason>) {
    SWIFT_LOG(warning) << "Unimplemented" << std::endl;
}

void AbstractJingleSessionListener::handleTransportAcceptReceived(const JingleContentID&, std::shared_ptr<JingleTransportPayload>) {
    SWIFT_LOG(warning) << "Unimplemented" << std::endl;
}

void AbstractJingleSessionListener::handleTransportInfoReceived(const JingleContentID&, std::shared_ptr<JingleTransportPayload>) {
    SWIFT_LOG(warning) << "Unimplemented" << std::endl;
}

void AbstractJingleSessionListener::handleTransportRejectReceived(const JingleContentID&, std::shared_ptr<JingleTransportPayload>) {
    SWIFT_LOG(warning) << "Unimplemented" << std::endl;
}

void AbstractJingleSessionListener::handleTransportReplaceReceived(const JingleContentID&, std::shared_ptr<JingleTransportPayload>) {
    SWIFT_LOG(warning) << "Unimplemented" << std::endl;
}

void AbstractJingleSessionListener::handleTransportInfoAcknowledged(const std::string&) {
}