You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Remco cb6e5cb0c7 Major rewrite пре 7 година
..
examples Major rewrite пре 7 година
.gitignore Major rewrite пре 7 година
.travis.yml Major rewrite пре 7 година
LICENSE Major rewrite пре 7 година
README.md Major rewrite пре 7 година
clamd.go Major rewrite пре 7 година
conn.go Major rewrite пре 7 година

README.md

go-clamd

Interface to clamd (clamav daemon). You can use go-clamd to implement virus detection capabilities to your application.

GoDoc Build Status

Examples

c := clamd.NewClamd("/tmp/clamd.socket")

reader := bytes.NewReader(clamd.EICAR)
response, err := c.ScanStream(reader)

for s := range response {
    fmt.Printf("%v %v\n", s, err)
}

Contributions

Contributions are welcome.

Creators

Remco Verhoef

Code and documentation copyright 2011-2014 Remco Verhoef. Code released under the MIT license.