aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/upnp/Device.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-22 09:51:26 +0100
committerMax Kellermann <max@duempel.org>2014-01-22 09:51:26 +0100
commit7b44dea4b1dcfcd74b2648e8be0d6e38918cbe0b (patch)
tree073b2e7d80176268a84564f4df3c6f0f2aaadaad /src/db/upnp/Device.hxx
parent18aea922e9f2f60bfadac1392cbf82fd768ecc8b (diff)
downloadmpd-7b44dea4b1dcfcd74b2648e8be0d6e38918cbe0b.tar.gz
mpd-7b44dea4b1dcfcd74b2648e8be0d6e38918cbe0b.tar.xz
mpd-7b44dea4b1dcfcd74b2648e8be0d6e38918cbe0b.zip
db/upnp/Device: remove unused UPnPService attributes
Diffstat (limited to 'src/db/upnp/Device.hxx')
-rw-r--r--src/db/upnp/Device.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/db/upnp/Device.hxx b/src/db/upnp/Device.hxx
index d03ad24f6..49bcd2896 100644
--- a/src/db/upnp/Device.hxx
+++ b/src/db/upnp/Device.hxx
@@ -37,19 +37,12 @@ class Error;
struct UPnPService {
// e.g. urn:schemas-upnp-org:service:ConnectionManager:1
std::string serviceType;
- // Unique Id inside device: e.g here THE ConnectionManager
- std::string serviceId; // e.g. urn:upnp-org:serviceId:ConnectionManager
- std::string SCPDURL; // Service description URL. e.g.: cm.xml
std::string controlURL; // e.g.: /upnp/control/cm
- std::string eventSubURL; // e.g.: /upnp/event/cm
void clear()
{
serviceType.clear();
- serviceId.clear();
- SCPDURL.clear();
controlURL.clear();
- eventSubURL.clear();
}
};