UDP客户端-服务器问题

发布于 2024-09-07 14:16:54 字数 169 浏览 3 评论 0原文

我正在尝试使用 UDP 在 C# 上编写客户端-服务器控制台应用程序。 我有一个问题。 因此,当我从客户端向服务器发送命令时,服务器必须具有读取的 IP 地址。 客户端必须从服务器获取一些设置,但在这种情况下客户端也必须有真实的 IP 地址。其他应用程序(例如游戏)不需要客户端真实IP。我必须做什么才能让它以这种方式工作?

I'm trying to write a client-server console application on C# using UDP.
And i have one question.
So, when i send command from client to server - servers must have a read IP adress.
client must get some settings from server,but in this case client must have real IP adress too. Other application like games do not require client real IP. What must do I to it work in such a way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

森林散布 2024-09-14 14:16:54

游戏要么使用有公网IP的主机作为服务器,要么使用服务器本身作为服务器。

具有私有IP的客户端与服务器建立连接,然后服务器使用该连接将数据返回给客户端(类似于浏览器)。

在 C# 中,您可以使用 NetworkStream 类对于 TCP,UdpClient 对于 UDP。

Games either use the host computer with a public IP as a server or the server itself as a server.

A client with private IP establishes a connection with a server and the server then uses the connection to return data to a client (similar to browsers).

In C# you could use the NetworkStream class for TCP and UdpClient for UDP.

披肩女神 2024-09-14 14:16:54

如果我正确理解你的问题:你可以使用Socket.ReceiveFrom,它会告诉服务器正在发送请求的客户端的IP地址。

If I understand your question correctly: you could use Socket.ReceiveFrom, which will tell the server the IP address of the client who is sending a request.

陌上青苔 2024-09-14 14:16:54

使用 Socket.BeginReceiveFrom / EndReceiveFrom 服务器获取客户端的 IP 地址。如果服务器需要回复,则使用 IPEndPoint。

Using Socket.BeginReceiveFrom / EndReceiveFrom the server gets the IP address of the client. If the server needs to reply, it uses the IPEndPoint.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文