summaryrefslogtreecommitdiffstats
blob: 56d2e92260716647f6127852b9792c9e45fcb58a (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-2019 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";
}

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

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

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

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

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

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

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