Ejemplo n.º 1
0
void DviProtocolUpnpAdapterSpecificData::SsdpSearchServiceType(const Endpoint& aEndpoint, TUint aMx, const Brx& aDomain, const Brx& aType, TUint aVersion)
{
    IUpnpMsearchHandler* handler = Handler();
    if (handler != NULL) {
        handler->SsdpSearchServiceType(aEndpoint, aMx, iListener->Interface(), aDomain, aType, aVersion);
    }
}
Ejemplo n.º 2
0
void DviProtocolUpnpAdapterSpecificData::SsdpSearchUuid(const Endpoint& aEndpoint, TUint aMx, const Brx& aUuid)
{
    IUpnpMsearchHandler* handler = Handler();
    if (handler != NULL) {
        handler->SsdpSearchUuid(aEndpoint, aMx, iListener->Interface(), aUuid);
    }
}
Ejemplo n.º 3
0
void DviProtocolUpnpAdapterSpecificData::SsdpSearchDeviceType(const Endpoint& aEndpoint, TUint aMx, const Brx& aDomain, const Brx& aType, TUint aVersion)
{
    if (!IsLocationReachable(aEndpoint)) {
        return;
    }
    IUpnpMsearchHandler* handler = Handler();
    if (handler != NULL) {
        handler->SsdpSearchDeviceType(aEndpoint, aMx, iListener->Interface(), aDomain, aType, aVersion);
    }
}
Ejemplo n.º 4
0
void DviProtocolUpnpAdapterSpecificData::SsdpSearchRoot(const Endpoint& aEndpoint, TUint aMx)
{
    if (!IsLocationReachable(aEndpoint)) {
        return;
    }
    IUpnpMsearchHandler* handler = Handler();
    if (handler != NULL) {
        handler->SsdpSearchRoot(aEndpoint, aMx, iListener->Interface());
    }
}