Inetd support
hsn10 opened this issue · 3 comments
hsn10 commented
Can you have option for running from inetd in wait mode?
m3ng9i commented
Sorry, I'm not familiar with inetd.
hsn10 commented
inetd maps the incoming request to standard input (stdin), standout output (stdout), and standard error (stderr) and launches the specified program. your WWW server. For tcp connections there are inetd parameters wait or nowait. If wait is specified them you will get pass listening socket and have to call accept and do as usual. If nowait is specified then you will get passed http client connection.
m3ng9i commented
I need time to do some research and study and decide if it's worth to add Inetd support.