dqan70724 2019-07-28 12:28
浏览 115
已采纳

向TCP服务器发送多个请求失败

I'm trying to send more than one request to a TCP server in Go but for some reason the second request is never sent, even if it is identical to the first one.

This is the server:

func StartServer(host string) {

    l, err := net.Listen("tcp", host)
    log.Println("Starting server on:", host)

    if err != nil {
        fmt.Println(err)
        os.Exit(1)
    }

    defer l.Close()
    log.Println("Server is running...")

    for {
        // Listen for an incoming connection.
        conn, err := l.Accept()
        if err != nil {
            log.Fatal("Error accepting: ", err.Error())
        }
        // Handle connections in a new goroutine.
        fmt.Println("got a request")
        go handleRequest(conn)
    }
}

And this is the function in the client that sends the requests to the server:

func (u *User) ConnectToServer(host string, partner string) {
    conn, _ := net.Dial("tcp", host)
    fmt.Fprintf(conn, "message1
")
    fmt.Fprintf(conn, "message2
")
}

EDIT: In the handleRequest function I read the input as follows:

 // Handles incoming requests.
func handleRequest(conn net.Conn) {

    rec, err := bufio.NewReader(conn).ReadString('
')

    if err != nil {
        log.Println("Error reading:", err.Error())
    }

    log.Println("Got message: ", rec)

    // Send a response back to person contacting us.
    conn.Write([]byte("Message received."))
    // conn.Close()
}

Which according to the documentation only takes the first part before the first line break detected so I believe the second message is ignored because of this. How can I read both messages? Should I change the delimiter in the client maybe?

  • 写回答

2条回答 默认 最新

  • doqo89924 2019-07-28 21:32
    关注

    The server should read multiple lines given that the client sends multiple lines. Use bufio.Scanner to read lines:

    func handleRequest(conn net.Conn) {
       defer conn.Close()
       scanner := bufio.NewScanner(conn)
       for scanner.Scan() {
          fmt.Printf("Got message: %s
    ", scanner.Bytes())
          conn.Write([]byte("Message received."))
       }
       if err := scanner.Err(); err != nil {
          fmt.Printf("error reading connection: %v
    ", err)
       }
    }
    

    Some notes about the code:

    • To prevent a resource leak, the function closes the connection on return.
    • The scanner loop breaks on error reading the connection. If the error is not io.EOF, then the function logs the error.
    • bufio.Reader can also be used to read lines, but bufio.Scanner is easier to use.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)