Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17871 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 92247 invoked by uid 1010); 12 Aug 2005 15:40:14 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 92232 invoked from network); 12 Aug 2005 15:40:14 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Aug 2005 15:40:14 -0000 X-Host-Fingerprint: 64.233.184.207 wproxy.gmail.com Linux 2.4/2.6 Received: from ([64.233.184.207:48788] helo=wproxy.gmail.com) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 8F/40-33075-ED2CCF24 for ; Fri, 12 Aug 2005 11:40:14 -0400 Received: by wproxy.gmail.com with SMTP id i22so603301wra for ; Fri, 12 Aug 2005 08:40:10 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=mIuqTp/1vhqGLInN30Xw/c6gy3QYRKfJRuqqWnhDdlyrykO04T0QbEc1Px9zddEJmGLZj9NjuE+fmvooBzve+G3L/hKufxmNi5c8TxgF7bpz4tDh024y90VAkekZ0ot9JUMC8c67MSrYUP+jInb2PPxaikrqe7wskobVFvlob2Q= Received: by 10.54.35.39 with SMTP id i39mr1936811wri; Fri, 12 Aug 2005 08:40:10 -0700 (PDT) Received: by 10.54.107.8 with HTTP; Fri, 12 Aug 2005 08:40:10 -0700 (PDT) Message-ID: <57792e85050812084074ef3951@mail.gmail.com> Date: Fri, 12 Aug 2005 08:40:10 -0700 To: Xuefer Cc: Rasmus Lerdorf , Andreas Korthaus , internals@lists.php.net In-Reply-To: <28139bc05081119584965a434@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <57792e85050808205143e96a8f@mail.gmail.com> <42F907A0.8070900@web.de> <57792e85050809142416ee5d6c@mail.gmail.com> <42F9217F.6010604@lerdorf.com> <57792e8505080917402f144072@mail.gmail.com> <42F962CF.4000503@lerdorf.com> <57792e85050811174867b7a6c3@mail.gmail.com> <28139bc05081119584965a434@mail.gmail.com> Subject: Re: [PHP-DEV] Re: Moving to PHP5.1 and Apache 2.2 next year, need help From: iamstever@gmail.com (steve roussey) srclib/apr/network_io/unix/sockopt.c: if (setsockopt(sock->socketdes, SOL_SOCKET, SO_LINGER, (char *) &li, sizeof(struct linger)) =3D=3D -1) ... It gets set if APR_SO_LINGER, is set which it is: srclib/apr/include/apr_network_io.h:#define APR_SO_LINGER 1=20 /**< Linger */ and if SO_LINGER is set, which it is inside the linux socket include file (the included bits one, but I'm going by memory here). On 8/11/05, Xuefer wrote: > sorry, but i don't see any SO_LINGER, except some comments in apache2 > source code, even you want to enable it by configure option. can you > bring me to the source or document where you're told that apache2 uses > SO_LINGER?