Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3486241
D6281.id21836.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
904 B
Referenced Files
None
Subscribers
None
D6281.id21836.diff
View Options
diff --git a/shared/tunnelbroker-client/src/lib.rs b/shared/tunnelbroker-client/src/lib.rs
new file mode 100644
--- /dev/null
+++ b/shared/tunnelbroker-client/src/lib.rs
@@ -0,0 +1,26 @@
+use lazy_static::lazy_static;
+use std::sync::Arc;
+use tokio::runtime::{Builder, Runtime};
+use tonic::transport::Channel;
+
+pub mod tunnelbroker_pb {
+ tonic::include_proto!("tunnelbroker");
+}
+use tunnelbroker_pb::tunnelbroker_service_client::TunnelbrokerServiceClient;
+
+lazy_static! {
+ pub static ref RUNTIME: Arc<Runtime> = Arc::new(
+ Builder::new_multi_thread()
+ .worker_threads(1)
+ .max_blocking_threads(1)
+ .enable_all()
+ .build()
+ .unwrap()
+ );
+}
+
+pub fn initialize_client(addr: String) -> TunnelbrokerServiceClient<Channel> {
+ RUNTIME
+ .block_on(TunnelbrokerServiceClient::connect(addr))
+ .expect("Failed to connect ot the Tunnelbroker Service")
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Dec 19, 4:02 AM (21 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2675230
Default Alt Text
D6281.id21836.diff (904 B)
Attached To
Mode
D6281: [tunnelbroker-client] Adding Tunnelbroker tonic client initialization function
Attached
Detach File
Event Timeline
Log In to Comment