Get client IP from UDP packages received with UdpClient(从使用 UdpClient 接收的 UDP 包中获取客户端 IP)
问题描述
我正在 System.Net.Sockets.UdpClient 类.
这是两个玩家,所以一个人应该打开一个服务器并等待传入的连接.另一个玩家输入主机 IP 并尝试发送ping",以确保连接是可能的并且有一个打开的服务器.然后主机以pong"响应.
It's for two players, so one should open a server and wait for incoming connections. The other player inputs the host IP and tries to send a "ping", to make sure a connection is possible and there is an open server. The host then responds with a "pong".
游戏运行后,双方都要互相发送udp消息,所以都需要对方的ip地址.
Once the game is running, both have to send udp messages to each other, so they both need the opponents ip address.
当然服务器也可以输入客户端的IP,不过我觉得没必要.
Of course the server could also input the clients IP, but that seems unneccessary to me.
收到ping"消息后,如何从 udp 包中获取客户端 IP?
How can I get the clients IP from the udp package when the "ping" message is received?
这是我的接收代码(服务器等待 ping):
Here is my receiving code (server waiting for ping):
private void ListenForPing()
{
while (!closeEverything)
{
var deserializer = new ASCIIEncoding();
IPEndPoint anyIP = new IPEndPoint(IPAddress.Any, 0);
byte[] recData = udp.Receive(ref anyIP);
string ping = deserializer.GetString(recData);
if (ping == "ping")
{
Console.WriteLine("Ping received.");
InvokePingReceiveEvent();
}
}
}
推荐答案
在您的示例中,当客户端连接时,anyIP IPEndPoint 对象将包含客户端连接的地址和端口.
In your example, when a client connects, the anyIP IPEndPoint object will contain the address and port of the client connection.
这篇关于从使用 UdpClient 接收的 UDP 包中获取客户端 IP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从使用 UdpClient 接收的 UDP 包中获取客户端 IP


- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01