2019-02-14 10:11:39 +00:00
|
|
|
//! Client side interface to the proxmox backup server
|
|
|
|
//!
|
|
|
|
//! This library implements the client side to access the backups
|
|
|
|
//! server using https.
|
|
|
|
|
2021-07-19 08:50:18 +00:00
|
|
|
pub mod catalog_shell;
|
|
|
|
pub mod pxar;
|
|
|
|
pub mod tools;
|
|
|
|
|
2019-05-23 10:29:33 +00:00
|
|
|
mod merge_known_chunks;
|
2020-03-23 14:03:18 +00:00
|
|
|
pub mod pipe_to_stream;
|
2019-05-14 12:54:21 +00:00
|
|
|
|
2019-02-14 10:11:39 +00:00
|
|
|
mod http_client;
|
2020-03-23 14:03:18 +00:00
|
|
|
pub use http_client::*;
|
2019-02-14 10:11:39 +00:00
|
|
|
|
2021-02-16 17:07:02 +00:00
|
|
|
mod vsock_client;
|
|
|
|
pub use vsock_client::*;
|
|
|
|
|
2019-12-08 10:27:15 +00:00
|
|
|
mod task_log;
|
|
|
|
pub use task_log::*;
|
|
|
|
|
2019-10-12 10:57:08 +00:00
|
|
|
mod backup_reader;
|
|
|
|
pub use backup_reader::*;
|
|
|
|
|
2019-10-12 11:53:11 +00:00
|
|
|
mod backup_writer;
|
|
|
|
pub use backup_writer::*;
|
|
|
|
|
2019-07-03 12:39:13 +00:00
|
|
|
mod remote_chunk_reader;
|
|
|
|
pub use remote_chunk_reader::*;
|
|
|
|
|
2019-03-14 09:54:09 +00:00
|
|
|
mod pxar_backup_stream;
|
|
|
|
pub use pxar_backup_stream::*;
|
2019-02-14 10:11:39 +00:00
|
|
|
|
|
|
|
mod backup_repo;
|
|
|
|
pub use backup_repo::*;
|
2020-05-22 06:04:20 +00:00
|
|
|
|
2020-05-30 08:54:38 +00:00
|
|
|
mod backup_specification;
|
|
|
|
pub use backup_specification::*;
|
|
|
|
|
2021-07-20 08:51:19 +00:00
|
|
|
mod chunk_stream;
|
|
|
|
pub use chunk_stream::{ChunkStream, FixedChunkStream};
|
|
|
|
|
2021-07-15 10:15:50 +00:00
|
|
|
pub const PROXMOX_BACKUP_TCP_KEEPALIVE_TIME: u32 = 120;
|