This commit is contained in:
nora 2024-08-10 02:11:01 +02:00
parent aa96faa697
commit 0eb9001f08
7 changed files with 445 additions and 409 deletions

View file

@ -1,13 +1,14 @@
use std::net::SocketAddr;
use eyre::{Context, Result};
use fakessh::{ServerConnection, SshError, ThreadRngRand};
use tokio::{
io::{AsyncReadExt, AsyncWriteExt},
net::{TcpListener, TcpStream},
};
use tracing::{error, info};
use ssh_transport::{ServerConnection, SshError, ThreadRngRand};
#[tokio::main]
async fn main() -> eyre::Result<()> {
tracing_subscriber::fmt().init();