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
基础教程推荐
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
