qcp 0.8.3

Secure remote file copy utility which uses the QUIC protocol over UDP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Control protocol implementation
// (c) 2025 Ross Younger

mod channel;
pub mod crypto;
mod endpoint;
mod ssh_process;

pub use channel::ControlChannel;
pub(crate) use channel::{ControlChannelServerInterface, stdio_channel};
pub use endpoint::create_endpoint;
pub(crate) use ssh_process::create;

#[cfg(test)]
pub(crate) use channel::{MockControlChannelServerInterface, ServerResult};
#[cfg(all(test, unix))]
pub(crate) use ssh_process::create_fake;