go fmt duh

This commit is contained in:
Jeffrey Paul 2018-08-25 12:07:33 -07:00
parent 5f3046319c
commit 596a551aa5
1 changed files with 36 additions and 36 deletions

View File

@ -6,9 +6,9 @@ package main
import (
"flag"
"fmt"
"os"
"github.com/akrennmair/gopcap"
"github.com/op/go-logging"
"os"
)
var log = logging.MustGetLogger("gpk")
@ -69,15 +69,15 @@ func main() {
flag.Parse()
go send(device, targetlist, portlist);
receive(device);
go send(device, targetlist, portlist)
receive(device)
}
func parsePortList (pl *[]uint16, s *string) {
func parsePortList(pl *[]uint16, s *string) {
}
func parseTargetList (tl *[]uint32, s *string) {
func parseTargetList(tl *[]uint32, s *string) {
}
@ -91,7 +91,7 @@ func send(device *string, targetlist *string, portlist *string) {
}
func sendSyn (device *string, sport uint16, dst uint32, dport uint16) {
func sendSyn(device *string, sport uint16, dst uint32, dport uint16) {
}