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条)

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料