modulepackage
0.0.0-20170520113014-b970184f4d9e
Repository: https://github.com/dutchcoders/go-clamd.git
Documentation: pkg.go.dev
# README
go-clamd
Interface to clamd (clamav daemon). You can use go-clamd to implement virus detection capabilities to your application.
Examples
c := clamd.NewClamd("/tmp/clamd.socket")
reader := bytes.NewReader(clamd.EICAR)
response, err := c.ScanStream(reader, make(chan bool))
for s := range response {
fmt.Printf("%v %v\n", s, err)
}
Contributions
Contributions are welcome.
Creators
Remco Verhoef
Copyright and license
Code and documentation copyright 2011-2014 Remco Verhoef. Code released under the MIT license.
# Packages
No description provided by the author
# Functions
No description provided by the author
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Variables
No description provided by the author
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author