X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=resource%2Finclude%2FOutOfProcClientWrapper.h;h=6ac5a6bc323000c49eb047d3a264456471a7fa6a;hb=c315c87e07c4080ecd0ef488e7a1047bc3c509b2;hp=c32656c126bca32b8b29f46c14e0061f2f2eb955;hpb=edcfc3d2329da7b914771c0dcff5f42c9b74fd93;p=platform%2Fupstream%2Fiotivity.git diff --git a/resource/include/OutOfProcClientWrapper.h b/resource/include/OutOfProcClientWrapper.h index c32656c..6ac5a6b 100644 --- a/resource/include/OutOfProcClientWrapper.h +++ b/resource/include/OutOfProcClientWrapper.h @@ -32,6 +32,16 @@ namespace OC PlatformConfig /*cfg*/) {} + virtual OCStackResult stop() + { + return OC_STACK_NOTIMPL; + } + + virtual OCStackResult start() + { + return OC_STACK_NOTIMPL; + } + virtual OCStackResult ListenForResource(const std::string& /*servUrl*/, const std::string& /*rsrcType*/, OCConnectivityType /*connType*/, @@ -39,13 +49,21 @@ namespace OC QualityOfService /*QoS*/) {return OC_STACK_NOTIMPL;} - virtual OCStackResult ListenForResource2(const std::string& /*servUrl*/, + virtual OCStackResult ListenForResourceList(const std::string& /*servUrl*/, const std::string& /*rsrcType*/, OCConnectivityType /*connType*/, FindResListCallback& /*callback*/, QualityOfService /*QoS*/) {return OC_STACK_NOTIMPL;} + virtual OCStackResult ListenForResourceListWithError(const std::string& /*servUrl*/, + const std::string& /*rsrcType*/, + OCConnectivityType /*connType*/, + FindResListCallback& /*callback*/, + FindErrorCallback& /*errorCallback*/, + QualityOfService /*QoS*/) + {return OC_STACK_NOTIMPL;} + virtual OCStackResult ListenErrorForResource(const std::string& /*servUrl*/, const std::string& /*rsrcType*/, OCConnectivityType /*connType*/, @@ -173,6 +191,14 @@ namespace OC QualityOfService /*QoS*/) {return OC_STACK_NOTIMPL;} #endif +#ifdef TCP_ADAPTER + virtual OCStackResult findKeepAliveResource(std::string host, + KeepAliveCallback resultCallback) + {return OC_STACK_NOTIMPL;} + virtual OCStackResult sendKeepAliveRequest(std::string host, const OCRepresentation& rep, + KeepAliveCallback resultCallback) + {return OC_STACK_NOTIMPL;} +#endif }; }