diff options
author | Sangkoo Kim <sangkoo.kim@samsung.com> | 2015-04-09 10:32:42 +0900 |
---|---|---|
committer | Sangkoo Kim <sangkoo.kim@samsung.com> | 2015-04-10 18:33:52 +0900 |
commit | 35fa17a60144a19ccae2814480d0be40d77261c3 (patch) | |
tree | e6dba6a7cb5d988c8cc60740eee2b3f80e10528c /proxy | |
parent | 07d38c6731f4aa3cd90fc22f94be25cba53f1a4b (diff) | |
download | msg-service-accepted/tizen/wearable/20150410.133840.tar.gz msg-service-accepted/tizen/wearable/20150410.133840.tar.bz2 msg-service-accepted/tizen/wearable/20150410.133840.zip |
Apply Cynara APIsubmit/tizen_wearable/20150410.094012submit/tizen_tv/20150410.094004submit/tizen_mobile/20150410.093956submit/tizen_common/20150520.888883accepted/tizen/wearable/20150410.133840accepted/tizen/tv/20150410.133709accepted/tizen/mobile/20150410.134625accepted/tizen/common/20150521.125407tizen_3.0.2015.q2_common
Change-Id: I8bd020538e757b97e6ea5bbc84abd970a72e36ea
Signed-off-by: Sangkoo Kim <sangkoo.kim@samsung.com>
Diffstat (limited to 'proxy')
-rwxr-xr-x | proxy/CMakeLists.txt | 2 | ||||
-rwxr-xr-x | proxy/MsgHandleControl.cpp | 19 |
2 files changed, 1 insertions, 20 deletions
diff --git a/proxy/CMakeLists.txt b/proxy/CMakeLists.txt index f54e982..7fbd079 100755 --- a/proxy/CMakeLists.txt +++ b/proxy/CMakeLists.txt @@ -31,7 +31,7 @@ INCLUDE_DIRECTORIES( ) INCLUDE(FindPkgConfig) -pkg_check_modules(trans_proxy_pkgs REQUIRED glib-2.0 dlog vconf security-server db-util) +pkg_check_modules(trans_proxy_pkgs REQUIRED glib-2.0 dlog vconf db-util) FOREACH(flag ${trans_proxy_pkgs_CFLAGS}) SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") diff --git a/proxy/MsgHandleControl.cpp b/proxy/MsgHandleControl.cpp index 7c8f5c3..423e017 100755 --- a/proxy/MsgHandleControl.cpp +++ b/proxy/MsgHandleControl.cpp @@ -17,8 +17,6 @@ #include <errno.h> #include <stdlib.h> -#include <security-server.h> - #include "MsgDebug.h" #include "MsgCppTypes.h" #include "MsgException.h" @@ -47,9 +45,6 @@ MsgHandle::~MsgHandle() void MsgHandle::openHandle() { -// int ret = 0; -// size_t cookieSize; - bool bReady = false; // server is currently booting and service is not available until the end of booting @@ -61,22 +56,8 @@ void MsgHandle::openHandle() MSG_INFO("Msg Server is ready !!!!!"); } - // Get Cookie Size -// cookieSize = security_server_get_cookie_size(); - -// MSG_DEBUG("cookie size : [%d]", cookieSize); - - // Request Cookie -// ret = security_server_request_cookie(mCookie, cookieSize); - -// if (ret < 0) { -// MSG_DEBUG("security_server_request_cookie() error!! [%d]", ret); -// return; -// } - // Open Socket IPC connectSocket(); -// getDbHandle(); /* register db handler */ } |