Update udphex.go

This commit is contained in:
Fijxu 2021-04-29 22:06:36 -04:00 committed by GitHub
parent c74270c0fb
commit d01b390baf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,12 @@
package udphex package main
import ( import (
"fmt" "fmt"
"net" "net"
"os" "os"
"time"
) )
func boom() { func main() {
target := os.Args[1] target := os.Args[1]
port := os.Args[2] port := os.Args[2]
conn, err := net.Dial("udp", target+":"+port) conn, err := net.Dial("udp", target+":"+port)