Updated all of request using High QOS.
authorParkhi <h_w.park@samsung.com>
Tue, 20 Sep 2016 02:18:56 +0000 (11:18 +0900)
committerUze Choi <uzchoi@samsung.com>
Wed, 21 Sep 2016 08:49:08 +0000 (08:49 +0000)
Change-Id: Icdb0805a29f6385900b22703cda2eb824330f0d6
Signed-off-by: Parkhi <h_w.park@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/11963
Reviewed-by: Jihun Ha <jihun.ha@samsung.com>
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Madan Lanka <lanka.madan@samsung.com>
Reviewed-by: Uze Choi <uzchoi@samsung.com>
Tested-by: Uze Choi <uzchoi@samsung.com>
service/easy-setup/mediator/richsdk/src/CloudResource.cpp
service/easy-setup/mediator/richsdk/src/EnrolleeResource.cpp

index 5fa633c..adc5271 100755 (executable)
@@ -53,7 +53,7 @@ namespace OIC
                                         const OCRepresentation& rep, const int eCode) >(
                         std::bind(&CloudResource::onCloudProvResponse, this,
                         std::placeholders::_1, std::placeholders::_2,
-                        std::placeholders::_3)));
+                        std::placeholders::_3)), OC::QualityOfService::HighQos);
         }
 
         void CloudResource::onCloudProvResponse(const HeaderOptions& /*headerOptions*/,
index 766213f..0b3e4ab 100755 (executable)
@@ -178,7 +178,7 @@ namespace OIC
                         const OCRepresentation& rep, const int eCode) >(
                                 std::bind(&EnrolleeResource::onGetStatusResponse, this,
                                         std::placeholders::_1, std::placeholders::_2,
-                                        std::placeholders::_3)));
+                                        std::placeholders::_3)), OC::QualityOfService::HighQos);
             };
 
             OCStackResult result = getStatus();
@@ -212,7 +212,7 @@ namespace OIC
                         const OCRepresentation& rep, const int eCode) >(
                                 std::bind(&EnrolleeResource::onGetConfigurationResponse, this,
                                         std::placeholders::_1, std::placeholders::_2,
-                                        std::placeholders::_3)));
+                                        std::placeholders::_3)), OC::QualityOfService::HighQos);
             };
 
             OCStackResult result = getConfigurationStatus();
@@ -244,7 +244,7 @@ namespace OIC
                                     const OCRepresentation& rep, const int eCode) >(
                     std::bind(&EnrolleeResource::onProvisioningResponse, this,
                     std::placeholders::_1, std::placeholders::_2,
-                    std::placeholders::_3)));
+                    std::placeholders::_3)), OC::QualityOfService::HighQos);
         }
     }
 }