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

#1152 in Network programming

Download history 77/week @ 2024-01-02 61/week @ 2024-01-09 97/week @ 2024-01-16 78/week @ 2024-01-23 45/week @ 2024-01-30 102/week @ 2024-02-06 74/week @ 2024-02-13 117/week @ 2024-02-20 204/week @ 2024-02-27 352/week @ 2024-03-05 198/week @ 2024-03-12 183/week @ 2024-03-19 118/week @ 2024-03-26 186/week @ 2024-04-02 240/week @ 2024-04-09 208/week @ 2024-04-16

784 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

~95KB