lib/upnp/Discovery: use C++11 initializers

This commit is contained in:
Max Kellermann 2016-12-28 22:05:31 +01:00
parent 71e7d32b08
commit 4e60ab7f53
2 changed files with 3 additions and 4 deletions

View File

@ -230,8 +230,7 @@ UPnPDeviceDirectory::UPnPDeviceDirectory(UpnpClient_Handle _handle,
UPnPDiscoveryListener *_listener) UPnPDiscoveryListener *_listener)
:handle(_handle), :handle(_handle),
listener(_listener), listener(_listener),
queue("DiscoveredQueue"), queue("DiscoveredQueue")
search_timeout(2), last_search(0)
{ {
} }

View File

@ -103,12 +103,12 @@ class UPnPDeviceDirectory final : UpnpCallback {
* called delay because it's the base of a random delay that * called delay because it's the base of a random delay that
* the devices apply to avoid responding all at the same time. * the devices apply to avoid responding all at the same time.
*/ */
int search_timeout; int search_timeout = 2;
/** /**
* The MonotonicClockS() time stamp of the last search. * The MonotonicClockS() time stamp of the last search.
*/ */
unsigned last_search; unsigned last_search = 0;
public: public:
UPnPDeviceDirectory(UpnpClient_Handle _handle, UPnPDeviceDirectory(UpnpClient_Handle _handle,