mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-19 19:16:17 +00:00
45b04316b9
Move build_internode_data_transport_from_env() out of RemoteDisk::new() into new_disk(), so RemoteDisk depends only on the Arc<dyn InternodeDataTransport> trait object. TCP/HTTP remains the default backend; all data paths unchanged. Co-authored-by: Henry Guo <marshawcoco@users.noreply.github.com>
36 lines
1.4 KiB
Rust
36 lines
1.4 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
mod client;
|
|
mod context_propagation;
|
|
mod http_auth;
|
|
mod internode_data_transport;
|
|
mod peer_rest_client;
|
|
mod peer_s3_client;
|
|
mod remote_disk;
|
|
mod remote_locker;
|
|
|
|
pub use client::{
|
|
TonicInterceptor, gen_tonic_signature_interceptor, node_service_time_out_client, node_service_time_out_client_no_auth,
|
|
};
|
|
pub use http_auth::{TONIC_RPC_PREFIX, build_auth_headers, gen_signature_headers, verify_rpc_signature};
|
|
pub use internode_data_transport::{
|
|
InternodeDataTransport, InternodeDataTransportCapabilities, ReadStreamRequest, TcpHttpInternodeDataTransport,
|
|
WalkDirStreamRequest, WriteStreamRequest, build_internode_data_transport, build_internode_data_transport_from_env,
|
|
};
|
|
pub use peer_rest_client::PeerRestClient;
|
|
pub use peer_s3_client::{LocalPeerS3Client, PeerS3Client, RemotePeerS3Client, S3PeerSys};
|
|
pub use remote_disk::RemoteDisk;
|
|
pub use remote_locker::RemoteClient;
|