Golang實現一個簡單的網絡編程

Server: package main import ( "fmt" "io" "net" ) func handle(conn net.Conn) { defer conn.Close() ip := conn.RemoteAddr().String() fmt.Printf("new client:%s\n", ip) for { buff := make([]byte
相關文章
相關標籤/搜索