官术网_书友最值得收藏!

How to do it…

In this recipe, we are going to update the main() method to call a handleRequest method passing the connection object to read and print data on the server console. Perform the following steps:

  1. Create tcp-server-read-data.go and copy the following content:
package main
import
(
"bufio"
"fmt"
"log"
"net"
)
const
(
CONN_HOST = "localhost"
CONN_PORT = "8080"
CONN_TYPE = "tcp"
)
func main()
{
listener, err := net.Listen(CONN_TYPE, CONN_HOST+":"+CONN_PORT)
if err != nil
{
log.Fatal("Error starting tcp server : ", err)
}
defer listener.Close()
log.Println("Listening on " + CONN_HOST + ":" + CONN_PORT)
for
{
conn, err := listener.Accept()
if err != nil
{
log.Fatal("Error accepting: ", err.Error())
}
go handleRequest(conn)
}
}
func handleRequest(conn net.Conn)
{
message, err := bufio.NewReader(conn).ReadString('\n')
if err != nil
{
fmt.Println("Error reading:", err.Error())
}
fmt.Print("Message Received from the client: ", string(message))
conn.Close()
}
  1. Run the program with the following command:
$ go run tcp-server-read-data.go
主站蜘蛛池模板: 黔西县| 砀山县| 察隅县| 五家渠市| 稷山县| 云浮市| 博白县| 新巴尔虎左旗| 宿松县| 龙山县| 望奎县| 巴青县| 莱芜市| 周至县| 湖南省| 咸宁市| 定西市| 邹平县| 凤城市| 凤阳县| 长汀县| 监利县| 临沂市| 苏尼特左旗| 顺平县| 浦城县| 江城| 梅河口市| 鲁山县| 内江市| 双流县| 东兰县| 长垣县| 醴陵市| 武乡县| 湄潭县| 神木县| 昌平区| 盈江县| 湛江市| 新密市|