1Net::Server::INET(3) User Contributed Perl Documentation Net::Server::INET(3)
2
3
4
6 Net::Server::INET - Net::Server personality
7
9 use Net::Server::INET;
10 @ISA = qw(Net::Server::INET);
11
12 sub process_request {
13 #...code...
14 }
15
16 Net::Server::INET->run();
17
19 Please read the pod on Net::Server first. This module is a
20 personality, or extension, or sub class, of the Net::Server module.
21
22 This personality is intended for use with inetd. It offers no methods
23 beyond the Net::Server base class. This module operates by overriding
24 the pre_bind, bind, accept, and post_accept methods to let all socket
25 processing to be done by inetd.
26
28 See Net::Server.
29
31 See Net::Server
32
34 There are no additional hooks in Net::Server::INET.
35
37 See Net::Server
38
40 Paul T. Seamons paul@seamons.com
41
43 Please see also Net::Server::Fork, Net::Server::INET,
44 Net::Server::PreFork, Net::Server::MultiType, Net::Server::Single
45
46
47
48perl v5.12.0 2007-02-03 Net::Server::INET(3)