Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fcbbe179 authored by Hasini Gunasinghe's avatar Hasini Gunasinghe
Browse files

Export RpcServerConnection for use in Trusty

Dependent CL/code: https://android-review.git.corp.google.com/c/trusty/app/authmgr/+/3342621/2/authmgr-be/lib/src/server.rs#28

Test: compile in Trusty
Bug: 369145005
Change-Id: I70cd4bb8f2b2747d61a4c59749c664c39e43b259
parent 4b89f17e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -20,6 +20,8 @@ mod server;
mod session;

pub use server::RpcServer;
#[cfg(target_os = "trusty")]
pub use server::RpcServerConnection;
#[cfg(not(target_os = "trusty"))]
pub use server::RpcServerRef;
pub use session::{FileDescriptorTransportMode, RpcSession, RpcSessionRef};