inetd.startOne
| Syntax |
inetd.startOne (addr)
|
| Params |
addr is the address of a table containing information on the service to start The table pointed to by addr must contain three items: port: a number inidcating what port to listen on count: a number inidicating the maximim number of incoming connections daemon: a script to handle incoming connections
|
| Action |
Starts listening on the indicated port.
|
| Returns |
True if the service was started, false if the service was already running.
|
| Examples |
inetd.startOne (@user.inetd.config.http) » true
|
| See Also |
inetd.start
|