summaryrefslogtreecommitdiff
path: root/utils/LocIpc.h
diff options
context:
space:
mode:
authorKevin Tang <zhikait@codeaurora.org>2019-06-06 14:01:52 -0700
committerKevin Tang <zhikait@codeaurora.org>2019-06-06 16:21:18 -0700
commit0677be4e4626d05880180f74bc97bbc357ff4663 (patch)
treed8c993df08957db6ad32babb63739819e88e3206 /utils/LocIpc.h
parent9fc8d7444d5f68d3978973dacf7618293f1fd4cd (diff)
downloadgps-0677be4e4626d05880180f74bc97bbc357ff4663.tar.gz
Removing LocIpc::createLocIpcQsock* APIs
Qrtr and Qsock bot have createLocIpc*Sender and Recver APIs in LocIpc. But Qrtr is really next gen of Qsock. The two will not co-exist. Their existence depends on kernel versions, i.e. 4.9 and earlier is Qsock; while 4.14 and later is Qrtr. Having 2 sets of APIs doesn't make sense, as client would have to know what are the right ones to use, which there is really only one set of backing implementations. Change-Id: Ia473f282bb271ae213d7dc5020b0b8c7b0a8cb8f CRs-Fixed: 2466857
Diffstat (limited to 'utils/LocIpc.h')
-rw-r--r--utils/LocIpc.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/utils/LocIpc.h b/utils/LocIpc.h
index c71c4e0..b91966c 100644
--- a/utils/LocIpc.h
+++ b/utils/LocIpc.h
@@ -70,8 +70,6 @@ public:
getLocIpcInetTcpSender(const char* serverName, int32_t port);
static shared_ptr<LocIpcSender>
getLocIpcQrtrSender(int service, int instance);
- static shared_ptr<LocIpcSender>
- getLocIpcQsockSender(int service, int instance);
static unique_ptr<LocIpcRecver>
getLocIpcLocalRecver(const shared_ptr<ILocIpcListener>& listener,
@@ -82,9 +80,6 @@ public:
static unique_ptr<LocIpcRecver>
getLocIpcQrtrRecver(const shared_ptr<ILocIpcListener>& listener,
int service, int instance);
- static unique_ptr<LocIpcRecver>
- getLocIpcQsockRecver(const shared_ptr<ILocIpcListener>& listener,
- int service, int instance);
static pair<shared_ptr<LocIpcSender>, unique_ptr<LocIpcRecver>>
getLocIpcQmiLocServiceSenderRecverPair(const shared_ptr<ILocIpcListener>& listener,