2016-04-12 06:02:06 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/s-rah/onionscan/report"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProtocolScanner interface {
|
2016-05-01 02:44:48 +00:00
|
|
|
ScanProtocol(hiddenService string, os *ProtocolConfig, report *report.OnionScanReport)
|
2016-04-12 06:02:06 +00:00
|
|
|
}
|