Configuring and Managing MPE/iX Internet Services (MPE/iX 6.5)

Chapter 2 31
Internet Daemon
inetd Configuration File
Reading an entry from left to right, these fields are:
Field Purpose
service name The name of the service in the services
file.
socket type Either stream if the socket is a stream
socket, or dgram if the socket is a
datagram socket.
protocol A valid protocol name, either tcp or
udp, as entered in the protocols file.
wait state One of two states, wait or nowait, that
applies only to datagram sockets. The
wait entry instructs inetd to execute
only one datagram server for the
specified socket at any one time. This is
a single-threaded datagram server. The
nowait entry instructs inetd to
execute a datagram server for a
specified socket whenever a datagram
arrives, which frees the socket so that
inetd can receive further datagrams.
This is a multi-threaded datagram
server.
user The identification of the user when the
server is running.
server program The absolute path of the program that
inetd executes when it receives a
connection request.
arguments Arguments to the server program,
beginning with argument zero, which is
the name of the program.