FOMN0011
accept, ctrl sd

Explanation

This message is issued only if inetd is started with the debug (-d) option. An accept() has been issued for the socket associated with a new request. accept() has given a new socket descriptor, sd, allowing the socket associated with the service to continue to be listened to, while the new socket descriptor is used when invoking the service for the new request.

In the message text:
sd
The socket descriptor returned by accept().

System action

If sd is not -1, inetd will continue process that request, ultimately invoking program specified for the service in the configuration file. If sd is -1, an error message may be issued to the syslog daemon and appropriate processing would be done.

System programmer response

None.