hpfeeds

Honeynet Project generic authenticated datafeed protocol, Rust implementation

WIP

Only authenticate and publish are implemented.

Example

``` use std::error::Error; use hpfeeds::Hpfeeds;

fn main() -> Result<(), Box> { let hpf = Hpfeeds::new("host.com", 10000, "hpname", "elongatedmuskrat")?; hpf.publishto("chan1", b"hp hit")?; Ok(()) } ```