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 base qw(Net::Server::INET);
10
11 sub process_request {
12 #...code...
13 }
14
15 Net::Server::INET->run();
16
18 Please read the pod on Net::Server first. This module is a
19 personality, or extension, or sub class, of the Net::Server module.
20
21 This personality is intended for use with inetd. It offers no methods
22 beyond the Net::Server base class. This module operates by overriding
23 the pre_bind, bind, accept, and post_accept methods to let all socket
24 processing to be done by inetd.
25
27 See Net::Server.
28
30 See Net::Server
31
33 There are no additional hooks in Net::Server::INET.
34
36 See Net::Server
37
39 Paul T. Seamons paul@seamons.com
40
42 Please see also Net::Server::Fork, Net::Server::INET,
43 Net::Server::PreFork, Net::Server::MultiType, Net::Server::Single
44
45
46
47perl v5.36.0 2022-07-22 Net::Server::INET(3)