Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 62048 invoked from network); 28 Jun 2006 14:25:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Jun 2006 14:25:55 -0000 Received: (qmail 49462 invoked by uid 500); 28 Jun 2006 14:25:53 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 49421 invoked by uid 500); 28 Jun 2006 14:25:53 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 49410 invoked by uid 99); 28 Jun 2006 14:25:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 07:25:53 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of david@jetnet.co.uk designates 80.87.128.128 as permitted sender) Received: from [80.87.128.128] (HELO kosh.jetnet.co.uk) (80.87.128.128) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jun 2006 07:25:51 -0700 Received: from localhost (localhost [127.0.0.1]) by kosh.jetnet.co.uk (Postfix) with ESMTP id AEDA3234D5; Wed, 28 Jun 2006 14:25:30 +0000 (GMT) Received: from kosh.jetnet.co.uk ([127.0.0.1]) by localhost (mail.jetnet.co.uk [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 93994-05-2; Wed, 28 Jun 2006 14:25:29 +0000 (GMT) Received: from [192.168.0.124] (82-69-108-39.dsl.in-addr.zen.co.uk [82.69.108.39]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by kosh.jetnet.co.uk (Postfix) with ESMTP id B045023060; Wed, 28 Jun 2006 14:25:28 +0000 (GMT) Message-ID: <44A29156.3050008@jetnet.co.uk> Date: Wed, 28 Jun 2006 15:25:26 +0100 From: david reid User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: Justin Erenkrantz , dev@apr.apache.org Subject: Re: io abstractions References: <449EBF09.7040402@jetnet.co.uk> <6cca3db30606251223j13aed525le2ce9406bb8deb7b@mail.gmail.com> <449EEB49.8070801@jetnet.co.uk> <5c902b9e0606280646g232cf03dka15151df9a83dc31@mail.gmail.com> In-Reply-To: <5c902b9e0606280646g232cf03dka15151df9a83dc31@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at jetnet.co.uk X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Justin Erenkrantz wrote: > On 6/25/06, david reid wrote: >> apr_io_file(...) will create a file io >> apr_io_socket(...) a socket etc etc >> >> Then we simply have >> >> apr_read() >> apr_write() > > I think that should be apr_io_{read|write}. =) I don't think we want > to repeat the mistakes we had before with undecorated names. -- I avoided using _io_... as what else could it be? Also there won't be any other _read or _write as everything is abstracted away, so it seemed surplus to requirements. david