remove uint

This commit is contained in:
Alex 2017-10-14 19:58:08 -04:00
parent 4d9ffd16ac
commit f88983a4f7
2 changed files with 2 additions and 2 deletions

@ -88,7 +88,7 @@ func (s *HTTPScanner) GetName() string {
return s.config.Name
}
func (s *HTTPScanner) Scan(t zgrab2.ScanTarget, port uint) (interface{}, error) {
func (s *HTTPScanner) Scan(t zgrab2.ScanTarget) (interface{}, error) {
http := HTTPRequest{Method: "Get", Body: "testing"}
ret := HTTPResults{ProxyRequest: &http}
return ret, nil

@ -63,6 +63,6 @@ func (s *TLSScanner) InitPerSender(senderID int) error {
return nil
}
func (s *TLSScanner) Scan(t zgrab2.ScanTarget, port uint) (interface{}, error) {
func (s *TLSScanner) Scan(t zgrab2.ScanTarget) (interface{}, error) {
return s, nil
}