mirror of
https://github.com/lubosz/overte.git
synced 2025-04-14 14:46:55 +02:00
Merge pull request #14723 from SimonWalton-HiFi/connection-parented-to-socket
Make Connection class a Qt-child of Socket class
This commit is contained in:
commit
0370268f56
1 changed files with 1 additions and 0 deletions
|
@ -31,6 +31,7 @@ using namespace udt;
|
|||
using namespace std::chrono;
|
||||
|
||||
Connection::Connection(Socket* parentSocket, HifiSockAddr destination, std::unique_ptr<CongestionControl> congestionControl) :
|
||||
QObject(parentSocket),
|
||||
_parentSocket(parentSocket),
|
||||
_destination(destination),
|
||||
_congestionControl(move(congestionControl))
|
||||
|
|
Loading…
Reference in a new issue