Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试用独立的服务替换 inetd/xinetd 服务。我能做到的最简单的方法是什么?有一些标准代码可以开始吗?
inetd 如何知道将传入数据发送到哪个进程
它生成它(通常使用fork()后跟exec*()),因此它具有进程 ID。
fork()
exec*()
有一些标准代码可以开始吗?
xinetd的来源呢?
xinetd