DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH
 

Net::Server::INET



NAME

Net::Server::INET - Net::Server personality


SYNOPSIS

  use Net::Server::INET;
  @ISA = qw(Net::Server::INET);
  sub process_request {
     #...code...
  }
  Net::Server::INET->run();


DESCRIPTION

Please read the pod on Net::Server first. This module is a personality, or extension, or sub class, of the Net::Server module.

This personality is intended for use with inetd. It offers no methods beyond the Net::Server base class. This module operates by overriding the pre_bind, bind, accept, and post_accept methods to let all socket processing to be done by inetd.


CONFIGURATION FILE

See the Net::Server manpage.


PROCESS FLOW

See the Net::Server manpage


HOOKS

There are no additional hooks in Net::Server::INET.


TO DO

See the Net::Server manpage


AUTHOR

Paul T. Seamons paul@seamons.com


SEE ALSO

Please see also the Net::Server::Fork manpage, the Net::Server::INET manpage, the Net::Server::PreFork manpage, the Net::Server::MultiType manpage, the Net::Server::Single manpage