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>
Thu, 29 Sep 2016 07:36:26 +0000 (07:36 +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>
(cherry picked from commit f9496a14fe81547972b01a897e85cfbedc805401)
Reviewed-on: https://gerrit.iotivity.org/gerrit/12523

service/easy-setup/mediator/richsdk/src/CloudResource.cpp
service/easy-setup/mediator/richsdk/src/EnrolleeResource.cpp

index a56e3b5..c206c4d 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 aceb494..2623462 100755 (executable)
@@ -168,7 +168,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();
@@ -202,7 +202,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();
@@ -234,7 +234,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);
         }
     }
 }