2016-04-12 06:02:06 +00:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
2016-05-03 14:31:56 +00:00
|
|
|
"github.com/s-rah/onionscan/config"
|
2016-04-12 06:02:06 +00:00
|
|
|
"github.com/s-rah/onionscan/report"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProtocolScanner interface {
|
2016-05-03 14:31:56 +00:00
|
|
|
ScanProtocol(hiddenService string, onionscanConfig *config.OnionscanConfig, report *report.OnionScanReport)
|
2016-04-12 06:02:06 +00:00
|
|
|
}
|