Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
Remco cb6e5cb0c7 Major rewrite il y a 7 ans
..
examples Major rewrite il y a 7 ans
.gitignore Major rewrite il y a 7 ans
.travis.yml Major rewrite il y a 7 ans
LICENSE Major rewrite il y a 7 ans
README.md Major rewrite il y a 7 ans
clamd.go Major rewrite il y a 7 ans
conn.go Major rewrite il y a 7 ans

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.