当端口连接时启动进程

发布于 2024-09-26 00:58:39 字数 158 浏览 5 评论 0原文

我想创建一个客户端,它可以从同一 LAN 上的许多工作站中的任何一个发出单播数据请求。客户端可能会运行 Linux,但工作站可能运行任何操作系统。是否可以避免在每个工作站上运行守护程序,但让它们在几秒钟内回复请求?我想避免创建守护程序,因为该服务可能不经常使用,并且我不想让另一个进程给工作站带来负担。

I want to create a single client that issues unicast requests for data from any of many workstations on the same LAN. The client will likely run Linux, but the workstations may run any OS. Is it possible to avoid running a daemon on each of the workstations and yet have them reply to requests within a few seconds? I want to avoid creating a daemon because the service may be infrequently used and I don't want to burden the workstations with another process.

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

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

发布评论

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

评论(1

隔纱相望 2024-10-03 00:58:39

查看 inetd 的合适实现 适用于您的目标操作系统。该服务监听连接,并通过 stdin/stdout 将实际通信委托给普通 IO 到您的进程实例(根据需要生成):

inetd 实用程序 [..] 监听
某些互联网上的连接
插座。当发现连接时
它的套接字之一,它决定什么
服务套接字对应的,并调用一个程序来服务该请求。这
使用服务套接字作为其标准输入来调用服务器程序,
输出和错误描述符。程序结束后,inetd继续
监听套接字 [..]

Take a look at suitable implementations of inetd for your target operating system. This service listens for connections, and delegates the actual communication to plain IO through stdin/stdout to an instance of your process (which gets spawned on demand):

The inetd utility [..] listens for
connections on certain internet
sockets. When a connection is found on
one of its sockets, it decides what
service the socket corresponds to, and invokes a program to service the request. The
server program is invoked with the service socket as its standard input,
output and error descriptors. After the program is finished, inetd continues
to listen on the socket [..]

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