start client

This commit is contained in:
nora 2024-08-15 20:59:23 +02:00
parent c0f9687696
commit ff06ea5c72
14 changed files with 598 additions and 105 deletions

View file

@ -1,3 +1,4 @@
pub mod client;
mod crypto;
pub mod numbers;
pub mod packet;
@ -54,7 +55,7 @@ impl rand_core::RngCore for SshRngRandAdapter<'_> {
}
#[macro_export]
macro_rules! client_error {
macro_rules! peer_error {
($($tt:tt)*) => {
$crate::SshStatus::ClientError(::std::format!($($tt)*))
};