summaryrefslogtreecommitdiffstats
blob: 9af62f1b46cf8215fdf048a7020ad9e86cd9af20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2012 Yoann Blein
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#include <Swiften/ScreenSharing/RTPSession.h>

namespace Swift {

RTPSession::RTPSession(const HostAddressPort &remotePeer, PayloadType payloadType, int frequency)
	: remotePeer(remotePeer), payloadType(payloadType), frequency(frequency)
{
}

RTPSession::~RTPSession()
{
}

}