clam-client
is a simple rust interface for talking to a ClamAV server over a TCP socket.
Example:
```rust extern crate clam_client;
use clamclient::client::ClamClient; use clamclient::response::ClamScanResult;
fn main() { let client = ClamClient::new("127.0.0.1", 3310).unwrap();
if let Ok(results) = client.scan_path("/tmp/", true) {
for scan_result in results.iter() {
match scan_result {
ClamScanResult::Found(location, virus) => {
println!("Found virus: '{}' in {}", virus, location)
},
_ => {}
}
}
}
} ```