diff options
Diffstat (limited to 'libs/binder/OS.cpp')
-rw-r--r-- | libs/binder/OS.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/binder/OS.cpp b/libs/binder/OS.cpp index cc4a03ba67..24ce2bb465 100644 --- a/libs/binder/OS.cpp +++ b/libs/binder/OS.cpp @@ -17,6 +17,7 @@ #include "OS.h" #include <android-base/file.h> +#include <binder/RpcTransportRaw.h> #include <string.h> using android::base::ErrnoError; @@ -58,4 +59,8 @@ status_t dupFileDescriptor(int oldFd, int* newFd) { return OK; } +std::unique_ptr<RpcTransportCtxFactory> makeDefaultRpcTransportCtxFactory() { + return RpcTransportCtxFactoryRaw::make(); +} + } // namespace android |