NNTP Client for Rust
Add nntp via your Cargo.toml
:
toml
[dependencies.nntp]
git = "https://github.com/mattnenterprise/rust-nntp"
```rs extern crate nntp;
use nntp::{Article, NNTPStream};
fn main() { let mut nntp_stream = match NNTPStream::connect("nntp.aioe.org", 119) { Ok(stream) => stream, Err(e) => panic!("{}", e) };
match nntp_stream.capabilities() {
Ok(lines) => {
for line in lines.iter() {
print!("{}", line);
}
},
Err(e) => panic!(e)
}
match nntp_stream.list() {
Ok(groups) => {
for group in groups.iter() {
println!("Name: {}, High: {}, Low: {}, Status: {}", group.name, group.high, group.low, group.status)
}
},
Err(e) => panic!(e)
};
match nntp_stream.group("comp.sys.raspberry-pi") {
Ok(_) => (),
Err(e) => panic!(e)
}
match nntp_stream.article_by_number(6000) {
Ok(Article{headers, body}) => {
for (key, value) in headers.iter() {
println!("{}: {}", key, value)
}
for line in body.iter() {
print!("{}", line)
}
},
Err(e) => panic!(e)
}
match nntp_stream.article_by_id("<E2w*P06cv@news.chiark.greenend.org.uk>") {
Ok(Article{headers, body}) => {
for (key, value) in headers.iter() {
println!("{}: {}", key, value)
}
for line in body.iter() {
print!("{}", line)
}
},
Err(e) => panic!(e)
}
let _ = nntp_stream.quit();
} ```
MIT