From owner-freebsd-doc@FreeBSD.ORG Fri Oct 15 09:44:13 2004 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26A5916A4CE; Fri, 15 Oct 2004 09:44:13 +0000 (GMT) Received: from volginfo.ru (ns.volginfo.ru [217.23.84.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A84C43D46; Fri, 15 Oct 2004 09:44:11 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from FreeBSD.org (llp-13.vistcom.ru [217.23.84.68]) by volginfo.ru (Postfix) with ESMTP id A51F92010; Fri, 15 Oct 2004 13:44:09 +0400 (MSD) Message-ID: <416F9BE5.5020403@FreeBSD.org> Date: Fri, 15 Oct 2004 13:44:05 +0400 From: Denis Peplin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040205 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: Denis Peplin References: <416E4DFD.3040203@FreeBSD.org> <20041014102459.GD799@zaphod.nitro.dk> <20041014092213.22d6914d@localhost> <416E8491.8080500@FreeBSD.org> <20041014101233.399d4b40@localhost> <416E8CD3.9070700@FreeBSD.org> In-Reply-To: <416E8CD3.9070700@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------070905040504090100030805" cc: Tom Rhodes cc: freebsd-doc@FreeBSD.org cc: "Simon L. Nielsen" Subject: Re: TCP Wrappers section (handbook/security): services is not daemons X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Oct 2004 09:44:13 -0000 This is a multi-part message in MIME format. --------------070905040504090100030805 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hello! I have patch for this issue (attached), and keramida help me to fix it English form. log: Obtain some information from inetd(8) to fix "inetd" description in network-servers chapter. Add note about "daemon" term to "tcpwrappers" section of security chapter. Denis Peplin wrote: > Hello! > > Tom Rhodes wrote: > >> On Thu, 14 Oct 2004 17:52:17 +0400 >> Denis Peplin wrote: >> >> >>> Hello! >>> >>> Yes, i see now that using word "daemon" for services is >>> tradition here :) >>> >>> It will not be a big problem, if we will add short >>> description for this "term" (explain tradition) in >>> beginning of the section. >> >> >> >> We can do that, but I do see one slight problem: Should you >> write a patch or should I? I'm kind of in the middle of a >> move and a new job so my FreeBSD time is pretty short. :) >> > I can write it, but i'm not native English speaker, so you preferred :) --------------070905040504090100030805 Content-Type: text/plain; name="srv_d3.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="srv_d3.diff" Index: network-servers/chapter.sgml =================================================================== RCS file: /home/dcvs/doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml,v retrieving revision 1.31 diff -u -r1.31 chapter.sgml --- network-servers/chapter.sgml 8 Oct 2004 15:22:40 -0000 1.31 +++ network-servers/chapter.sgml 15 Oct 2004 09:36:06 -0000 @@ -111,12 +111,12 @@ &man.inetd.8; is referred to as the Internet Super-Server because it manages connections for - several daemons. Programs that provide network service are - commonly known as daemons. inetd - serves as a managing server for other daemons. When a + several services. When a connection is received by inetd, it - determines which daemon the connection is destined for, spawns - the particular daemon and delegates the socket to it. Running + determines which program the connection is destined for, spawns + the particular process and delegates the socket to it (the program + is invoked with the service socket as its standard input, output + and error descriptors). Running one instance of inetd reduces the overall system load as compared to running each daemon individually in stand-alone mode. Index: security/chapter.sgml =================================================================== RCS file: /home/dcvs/doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml,v retrieving revision 1.228 diff -u -r1.228 chapter.sgml --- security/chapter.sgml 3 Oct 2004 23:35:59 -0000 1.228 +++ security/chapter.sgml 15 Oct 2004 09:36:08 -0000 @@ -1501,6 +1501,12 @@ read the inetd configuration section. + + While programs run by &man.inetd.8; are not exactly + daemons, they have traditionally been called + daemons. This is the term we will use in this section too. + + Initial Configuration --------------070905040504090100030805--