摘要: Building a TCP Proxy Using io.Reader and io.Writer Essentially all input/output(I/O). package main import ( "fmt" "log" "os" ) // FooReader defines an 阅读全文
posted @ 2020-02-22 22:09 晨风_Eric 阅读(300) 评论(0) 推荐(0)
摘要: Simple Port Scanner with Golang Use Go‘s net package: net.Dial(network, address string) package main import ( "fmt" "net" ) func main() { _, err := ne 阅读全文
posted @ 2020-02-22 16:32 晨风_Eric 阅读(294) 评论(0) 推荐(0)