Switch to unified view

a/src/conman.cxx b/src/conman.cxx
...
...
58
58
59
    // Our data never changes, so if this is not an unconditional request,
59
    // Our data never changes, so if this is not an unconditional request,
60
    // we return nothing.
60
    // we return nothing.
61
    if (all) {
61
    if (all) {
62
        names.push_back("SinkProtocolInfo");
62
        names.push_back("SinkProtocolInfo");
63
        values.push_back(upmpdProtocolInfo);
63
        values.push_back(g_protocolInfo);
64
    }
64
    }
65
    return true;
65
    return true;
66
}
66
}
67
67
68
int UpMpdConMan::getCurrentConnectionIDs(const SoapIncoming& sc, SoapOutgoing& data)
68
int UpMpdConMan::getCurrentConnectionIDs(const SoapIncoming& sc, SoapOutgoing& data)
...
...
94
94
95
int UpMpdConMan::getProtocolInfo(const SoapIncoming& sc, SoapOutgoing& data)
95
int UpMpdConMan::getProtocolInfo(const SoapIncoming& sc, SoapOutgoing& data)
96
{
96
{
97
    LOGDEB("UpMpdConMan::getProtocolInfo" << endl);
97
    LOGDEB("UpMpdConMan::getProtocolInfo" << endl);
98
    data.addarg("Source", "");
98
    data.addarg("Source", "");
99
    data.addarg("Sink", upmpdProtocolInfo);
99
    data.addarg("Sink", g_protocolInfo);
100
100
101
    return UPNP_E_SUCCESS;
101
    return UPNP_E_SUCCESS;
102
}
102
}