7 releases

0.2.1 Oct 23, 2021
0.2.0 Oct 6, 2021
0.1.4 Jul 17, 2019
0.1.3 Dec 11, 2018
0.1.0 Dec 22, 2017

#7 in #expect

Download history 203/week @ 2024-03-13 169/week @ 2024-03-20 132/week @ 2024-03-27 183/week @ 2024-04-03 272/week @ 2024-04-10 190/week @ 2024-04-17 187/week @ 2024-04-24 142/week @ 2024-05-01 237/week @ 2024-05-08 344/week @ 2024-05-15 287/week @ 2024-05-22 189/week @ 2024-05-29 187/week @ 2024-06-05 184/week @ 2024-06-12 205/week @ 2024-06-19 198/week @ 2024-06-26

794 downloads per month
Used in 4 crates

MIT license

36KB
642 lines

telnet-rs

Build Status MIT licensed crates.io API docs

A simple Telnet implementation.

Examples

Blocking Reading

use telnet::{Telnet, Event};

fn main() {
    let mut telnet = Telnet::connect(("ptt.cc", 23), 256)
            .expect("Couldn't connect to the server...");

    loop {
        let event = telnet.read().expect("Read error");

        if let Event::Data(buffer) = event {
            // Debug: print the data buffer
            println!("{:?}", buffer);
            // process the data buffer
        }
    }
}

Non-Blocking Reading

use telnet::{Telnet, Event};

fn main() {
    let mut telnet = Telnet::connect(("ptt.cc", 23), 256)
            .expect("Couldn't connect to the server...");

    loop {
        let event = telnet.read_nonblocking().expect("Read error");

        if let Event::Data(buffer) = event {
            // Debug: print the data buffer
            println!("{:?}", buffer);
            // process the data buffer
        }

        // Do something else ...
    }
}

Writing

use telnet::Telnet;

fn main() {
    let mut telnet = Telnet::connect(("ptt.cc", 23), 256)
            .expect("Couldn't connect to the server...");

    let buffer: [u8; 4] = [83, 76, 77, 84];
    telnet.write(&buffer).expect("Read error");
}

TODOs

  • reduce unnecessary data copy
  • add coverage check
  • add crate-level documentation

Dependencies

~97KB