Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:43125 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 69907 invoked from network); 19 Feb 2009 23:19:58 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Feb 2009 23:19:58 -0000 Authentication-Results: pb1.pair.com smtp.mail=surreal.w00t@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=surreal.w00t@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 72.14.220.153 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: surreal.w00t@gmail.com X-Host-Fingerprint: 72.14.220.153 fg-out-1718.google.com Received: from [72.14.220.153] ([72.14.220.153:29561] helo=fg-out-1718.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E8/33-53241-D19ED994 for ; Thu, 19 Feb 2009 18:19:58 -0500 Received: by fg-out-1718.google.com with SMTP id e12so1084830fga.23 for ; Thu, 19 Feb 2009 15:19:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:reply-to:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=yTSTK2ejUNDpBclJy8RHUz3t6daAX5PiugGsZ0YzuK0=; b=hk9QravPdc2BOXUoj10TROC9veGwlQ3AmrvaXngRSdkcTsAXvaPCXsqmlPaxvZ/7NB S+shabd4QUs2iZgbImZ4sKk7TnLY75CC4B+OPyerVCuXB0IcHvkxgQSI+reuioS2dkse 8qSQDxadvXdV3mBCfUPy4wy2ptmsGOml8rWiA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:reply-to:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=c6Z/Amz9/RC57fK/ZuBLr1r/cit2B/rp5NVbDCpmFYfx8ijvQiPs/s+1MmmF0pi9XR fzLzaggUigVaK/2m3x8iJRBs5zgo2qFnlWIxNyRcp1Jjv4x0bi/f/dSCNEnblUIWseyU HD37sZ6gv2Ce7IBzwSGk/QnpOGYzjZcMzSGa4= MIME-Version: 1.0 Sender: surreal.w00t@gmail.com Reply-To: viroteck@viroteck.net Received: by 10.86.3.4 with SMTP id 4mr695991fgc.41.1235085594545; Thu, 19 Feb 2009 15:19:54 -0800 (PST) In-Reply-To: <499DDC23.5000100@gravitonic.com> References: <499DDC23.5000100@gravitonic.com> Date: Thu, 19 Feb 2009 23:19:54 +0000 X-Google-Sender-Auth: bab85cafcc227ae7 Message-ID: To: Andrei Zmievski Cc: PHP internals Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] FD_SETSIZE limitation From: viroteck@viroteck.net (Robin Burchell) On Thu, Feb 19, 2009 at 10:24 PM, Andrei Zmievski wrote: > Can someone explain why ext/sockets and also stream socket functions care > about FD_SETSIZE? They care, because they use the select(2) syscall, which cares about FD_SETSIZE.