diff options
author | 2022-08-25 23:58:11 +0000 | |
---|---|---|
committer | 2022-08-25 23:58:11 +0000 | |
commit | 3966e43e5f70473fcbe5c5127bb72bd8eb56b65c (patch) | |
tree | 73a000723fc552d1188ca4168c5834fc8b22bd20 /libs/binder/RpcSession.cpp | |
parent | cf3bb13bd6971e30b7aacee303545a0b2ac6f37e (diff) | |
parent | 024727b29bd10909c2ddbb7a3cca9aa1dcec879d (diff) |
Merge "libbinder: add makeDefaultRpcTransportCtxFactory"
Diffstat (limited to 'libs/binder/RpcSession.cpp')
-rw-r--r-- | libs/binder/RpcSession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/RpcSession.cpp b/libs/binder/RpcSession.cpp index 8ddfa93c00..eee28d6dde 100644 --- a/libs/binder/RpcSession.cpp +++ b/libs/binder/RpcSession.cpp @@ -68,7 +68,7 @@ RpcSession::~RpcSession() { sp<RpcSession> RpcSession::make() { // Default is without TLS. - return make(RpcTransportCtxFactoryRaw::make()); + return make(makeDefaultRpcTransportCtxFactory()); } sp<RpcSession> RpcSession::make(std::unique_ptr<RpcTransportCtxFactory> rpcTransportCtxFactory) { |