initialize network variables
there were a number of variables copied over from the legacy Network class that were not properly initialized.
This commit is contained in:
parent
88e0d0827a
commit
fdb8dddc14
|
|
@ -19,6 +19,9 @@ ClientPrivate::ClientPrivate(Client *q)
|
||||||
: port(AMQP_PORT),
|
: port(AMQP_PORT),
|
||||||
host(QString::fromLatin1(AMQP_HOST)),
|
host(QString::fromLatin1(AMQP_HOST)),
|
||||||
virtualHost(QString::fromLatin1(AMQP_VHOST)),
|
virtualHost(QString::fromLatin1(AMQP_VHOST)),
|
||||||
|
autoReconnect(false),
|
||||||
|
timeout(-1),
|
||||||
|
connecting(false),
|
||||||
socket(0),
|
socket(0),
|
||||||
closed(false),
|
closed(false),
|
||||||
connected(false),
|
connected(false),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue