|
@@ -289,13 +289,12 @@ int cwmpService::dispatch(struct soap* soap)
|
|
return serve___cwmp__GetRPCMethods(soap, this);
|
|
return serve___cwmp__GetRPCMethods(soap, this);
|
|
if (!soap_match_tag(soap, soap->tag, "cwmp:Inform"))
|
|
if (!soap_match_tag(soap, soap->tag, "cwmp:Inform"))
|
|
return serve___cwmp__Inform(soap, this);
|
|
return serve___cwmp__Inform(soap, this);
|
|
|
|
+ if (!soap_match_tag(soap, soap->tag, "cwmp:RebootResponse"))
|
|
|
|
+ return CustomeRebootResonse(soap, this);
|
|
if (!soap_match_tag(soap, soap->tag, "cwmp:Reboot"))
|
|
if (!soap_match_tag(soap, soap->tag, "cwmp:Reboot"))
|
|
return serve___cwmp__Reboot(soap, this);
|
|
return serve___cwmp__Reboot(soap, this);
|
|
if (!soap_match_tag(soap, soap->tag, "cwmp:FactoryReset"))
|
|
if (!soap_match_tag(soap, soap->tag, "cwmp:FactoryReset"))
|
|
return serve___cwmp__FactoryReset(soap, this);
|
|
return serve___cwmp__FactoryReset(soap, this);
|
|
- if (!soap_match_tag(soap, soap->tag, "cwmp:RebootResponse"))
|
|
|
|
- return CustomeRebootResonse(soap, this);
|
|
|
|
- std::cerr<<"soap->tag: "<<soap->tag<<std::endl;
|
|
|
|
return soap->error = SOAP_NO_METHOD;
|
|
return soap->error = SOAP_NO_METHOD;
|
|
}
|
|
}
|
|
|
|
|