From fab6cbed7554ad83df3d70cf24a94a178fe406ff Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 18 Jan 2014 16:28:12 +0100 Subject: db/upnp/Discovery: eliminate attribute "last_seen" --- src/db/upnp/Discovery.hxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/db/upnp/Discovery.hxx') diff --git a/src/db/upnp/Discovery.hxx b/src/db/upnp/Discovery.hxx index cda78cff5..a45163e9b 100644 --- a/src/db/upnp/Discovery.hxx +++ b/src/db/upnp/Discovery.hxx @@ -67,16 +67,14 @@ class UPnPDeviceDirectory { /** * The MonotonicClockS() time stamp when this device - * was last seen alive. + * expires. */ - unsigned last_seen; - - unsigned expires; // seconds valid + unsigned expires; ContentDirectoryDescriptor() = default; ContentDirectoryDescriptor(unsigned last, int exp) - :last_seen(last), expires(exp+20) {} + :expires(last + exp + 20) {} bool Parse(const std::string &url, const char *description, Error &_error) { -- cgit v1.2.3