如何在golang上的UDP服务器上获取客户端IP地址?

如何在golang上的UDP服务器上获取客户端IP地址?,第1张

概述我成功地运行了一个udp服务器 func main() { service := "0.0.0.0:27014" udpAddr, err := net.ResolveUDPAddr("udp4", service) checkError(err) conn, err := net.ListenUDP("udp", udpAddr) checkError(e 我成功地运行了一个udp服务器

func main() {    service := "0.0.0.0:27014"    udpAddr,err := net.ResolveUDPAddr("udp4",service)    checkerror(err)    conn,err := net.ListenUDP("udp",udpAddr)    checkerror(err)    for {        handleClIEnt(conn)    }}

但我想知道如何找出谁(远程IP地址,客户端IP地址)向我的服务器发送请求

解决方法 在连接模式下,您可以使用连接对象的 LocalAddr()和 RemoteAddr()方法.

在断开连接(即经典)模式下,您可以使用以下方法之一获取数据报本身的地址信息:

func (c *UDPConn) ReadFrom(b []byte) (int,Addr,error)ReadFrom implements the PacketConn ReadFrom method.func (c *UDPConn) ReadFromUDP(b []byte) (n int,addr *UDPAddr,err error)ReadFromUDP reads a UDP packet from c,copying the payload into b. It returns the number of bytes copIEd into b and the return address that was on the packet.func (c *UDPConn) ReadMsgUDP(b,oob []byte) (n,oobn,flags int,err error)ReadMsgUDP reads a packet from c,copying the payload into b and the associated out-of-band data into oob. It returns the number of bytes copIEd into b,the number of bytes copIEd into oob,the flags that were set on the packet and the source address of the packet.

地址信息是这些方法签名中返回值的一部分.

总结

以上是内存溢出为你收集整理的如何在golang上的UDP服务器上获取客户端IP地址?全部内容,希望文章能够帮你解决如何在golang上的UDP服务器上获取客户端IP地址?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1266292.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存