Crates.io | mini-telnet |
lib.rs | mini-telnet |
version | 0.1.8 |
source | src |
created_at | 2021-12-01 07:16:52.971361 |
updated_at | 2022-04-24 05:42:06.027902 |
description | Asynchronous minimal telnet library |
homepage | |
repository | https://github.com/kolapapa/mini-telnet |
max_upload_size | |
id | 490150 |
size | 39,023 |
A mini async telnet client.
Add to Cargo.toml:
mini-telnet = "0.1.6"
use std::time::Duration;
use mini_telnet::Telnet;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut telnet = Telnet::builder()
.prompt("ubuntu@ubuntu:~$ ")
.login_prompt("login: ", "Password: ")
.connect_timeout(Duration::from_secs(10))
.timeout(Duration::from_secs(5))
.connect("192.168.100.2:23")
.await?;
telnet.login("ubuntu", "ubuntu").await?;
assert_eq!(
telnet.normal_execute("echo 'haha'").await?,
"echo 'haha'\nhaha\n",
);
assert_eq!(telnet.execute("echo 'haha'").await?, "haha\n");
Ok(())
}
Part of the logic referenced from: telnet-chat