選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
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.