make install of config files more straightforward.
[packages/xinetd.git] / debian / xinetd.d / echo
1 # default: off
2 # description: An xinetd internal service which echo's characters back to
3 # clients.
4 # This is the tcp version.
5 service echo
6 {
7         disable         = yes
8         type            = INTERNAL
9         id              = echo-stream
10         socket_type     = stream
11         protocol        = tcp
12         user            = root
13         wait            = no
14 }                                                                               
15
16 # This is the udp version.
17 service echo
18 {
19         disable         = yes
20         type            = INTERNAL
21         id              = echo-dgram
22         socket_type     = dgram
23         protocol        = udp
24         user            = root
25         wait            = yes
26 }