summaryrefslogtreecommitdiff
path: root/proxy
diff options
context:
space:
mode:
authorSangkoo Kim <sangkoo.kim@samsung.com>2015-04-09 10:32:42 +0900
committerSangkoo Kim <sangkoo.kim@samsung.com>2015-04-10 18:33:52 +0900
commit35fa17a60144a19ccae2814480d0be40d77261c3 (patch)
treee6dba6a7cb5d988c8cc60740eee2b3f80e10528c /proxy
parent07d38c6731f4aa3cd90fc22f94be25cba53f1a4b (diff)
downloadmsg-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
Change-Id: I8bd020538e757b97e6ea5bbc84abd970a72e36ea Signed-off-by: Sangkoo Kim <sangkoo.kim@samsung.com>
Diffstat (limited to 'proxy')
-rwxr-xr-xproxy/CMakeLists.txt2
-rwxr-xr-xproxy/MsgHandleControl.cpp19
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 */
}