C语言从以太网口接收数据
我想通过 c 程序从以太网端口访问可用数据。 因此,任何人请帮助我提供任何简单的“C”源代码,用于从以太网端口获取数据。
谢谢
I want to access the available data from my ethernet port through c program.
So anyone please help me in providing any simple "C" source codes for fetching the data from the ethernet ports.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚创建了 2 个程序来展示使用套接字进行客户端/服务器通信的最低要求。您可以通过谷歌搜索每个函数来了解它们的原型及其工作原理。
这是:
最小服务器 (minser.c)
最小客户端 (mincli.c)
小心,
贝科
I just created 2 programs to show minimum requirements to communicate a client/server with sockets. You can google for each function to learn their prototypes and how they work.
Here it is:
Minimum Server (minser.c)
Minimun Client (mincli.c)
Take care,
Beco
您可以使用
recv()
函数。You can use the
recv()
function.