qrtplib: RTP address constructor with host address and port

pull/154/head
f4exb 2018-03-05 22:09:00 +01:00
rodzic 915b865e6a
commit 9f9eaa7a88
1 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -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
{