qrtplib: RTP address constructor with host address and port

This commit is contained in:
f4exb 2018-03-05 22:09:00 +01:00
parent 915b865e6a
commit 9f9eaa7a88
1 changed files with 11 additions and 0 deletions

View File

@ -52,6 +52,17 @@ namespace qrtplib
class QRTPLIB_API RTPAddress
{
public:
/** Default constructor. Address and port set via setters */
RTPAddress() : port(0), rtcpsendport(0)
{}
/** Constructor with address and port */
RTPAddress(const QHostAddress& address, uint16_t port) :
address(address),
port(port),
rtcpsendport(0)
{}
/** Returns the type of address the actual implementation represents. */
QAbstractSocket::NetworkLayerProtocol GetAddressType() const
{