为了账号安全,请及时绑定邮箱和手机立即绑定

golang中的UDP,听不是阻塞调用?

golang中的UDP,听不是阻塞调用?

Go
一只萌萌小番薯 2021-09-09 13:40:04
我正在尝试使用 UDP 作为协议在两台计算机之间创建一条双向街道。也许我不明白 net.ListenUDP 的意义。这不应该是一个阻塞调用吗?等待客户端连接?addr := net.UDPAddr{    Port: 2000,    IP:   net.ParseIP("127.0.0.1"),}conn, err := net.ListenUDP("udp", &addr)// code does not block heredefer conn.Close()if err != nil {    panic(err)}var testPayload []byte = []byte("This is a test")conn.Write(testPayload)
查看完整描述

1 回答

?
30秒到达战场

TA贡献1828条经验 获得超6个赞

它不会阻塞,因为它在后台运行。然后你只需从连接中读取。


addr := net.UDPAddr{

    Port: 2000,

    IP:   net.ParseIP("127.0.0.1"),

}

conn, err := net.ListenUDP("udp", &addr) // code does not block here

if err != nil {

    panic(err)

}

defer ln.Close()


var buf [1024]byte

for {

    rlen, remote, err := conn.ReadFromUDP(buf[:])

    // Do stuff with the read bytes

}



var testPayload []byte = []byte("This is a test")


conn.Write(testPayload)

检查这个答案。它有一个 UDP 连接的工作示例,以及一些使其工作得更好的技巧。


查看完整回答
反对 回复 2021-09-09
  • 1 回答
  • 0 关注
  • 355 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信