使用 HttpWebRequest 发送特定数据包

发布于 2024-10-03 09:56:29 字数 110 浏览 4 评论 0原文

嘿。是否可以在不使用套接字的情况下从 C# 应用程序发送数据包?我想使用 WebClient 或 HttpWebRequest 来将特定格式的数据包发送到服务器。我见过的例子倾向于使用 UDP 客户端。谢谢

Hey. Is it possible to send a packet from a C# application without using sockets? I'd like to use WebClient or HttpWebRequest in order to send specifically formatted packets to a server. Examples I've seen tend to use UDP client. Thanks

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

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

发布评论

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

评论(2

趴在窗边数星星i 2024-10-10 09:56:29

这取决于“特定格式”的含义。 HttpWebRequest 是 HTTP 协议的 .Net 包装器,本质上不是 UDP,因此除了修改标头等对象数据之外,您无法自定义它发送的数据包。

It depends on what you mean by "Specifically Formatted". HttpWebRequest is a .Net wrapper around the HTTP protocol which is not UDP in nature, so you can not customize the packets it sends other than modifying object data like headers, etc.

蝶…霜飞 2024-10-10 09:56:29

您应该查看 IPEndPoint 类,这是设计的用于通过 IP 和端口地址将数据发送到网络端点。这是一个简单的示例,请参阅链接以获取更多详细信息以及带有错误检查的较长示例。

byte[] data = new byte[1024];
string payload = "<Enter Your Payload Here>";
IPEndPoint ep = new IPEndPoint("127.0.0.1", 1234); //IP + Port

Socket remoteServer = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
data = Encoding.ASCII.GetBytes(payload);
remoteServer.SendTo(data, data.Length, SocketFlags.None, ep);

You should look at the IPEndPoint class, this is designed for sending data to an network endpoint by IP and port address. Here is a simple example, see the link for more details and a longer example with error checking.

byte[] data = new byte[1024];
string payload = "<Enter Your Payload Here>";
IPEndPoint ep = new IPEndPoint("127.0.0.1", 1234); //IP + Port

Socket remoteServer = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
data = Encoding.ASCII.GetBytes(payload);
remoteServer.SendTo(data, data.Length, SocketFlags.None, ep);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文