mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
41 lines
787 B
Go
41 lines
787 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"net"
|
|
// "blitter.com/herradurakex"
|
|
)
|
|
|
|
func main() {
|
|
// Listen on TCP port 2000 on all available unicast and
|
|
// anycast IP addresses of the local system.
|
|
l, err := net.Listen("tcp", ":2000")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer l.Close()
|
|
|
|
fmt.Println("Serving on port 2000")
|
|
for {
|
|
// Wait for a connection.
|
|
conn, err := l.Accept()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
fmt.Println("Accepted client")
|
|
|
|
// Handle the connection in a new goroutine.
|
|
// The loop then returns to accepting, so that
|
|
// multiple connections may be served concurrently.
|
|
go func(c net.Conn) {
|
|
// Echo all incoming data.
|
|
io.Copy(c, c)
|
|
fmt.Println("Client sent:%v\n", c)
|
|
// Shut down the connection.
|
|
c.Close()
|
|
}(conn)
|
|
}
|
|
}
|