Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 62741 invoked from network); 29 Nov 2006 09:41:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Nov 2006 09:41:15 -0000 Received: (qmail 61328 invoked by uid 500); 29 Nov 2006 09:41:24 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 61302 invoked by uid 500); 29 Nov 2006 09:41:24 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 61291 invoked by uid 99); 29 Nov 2006 09:41:23 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Nov 2006 01:41:23 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 9F9D11A9846; Wed, 29 Nov 2006 01:40:06 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r480497 - /apr/apr/trunk/include/apr_network_io.h Date: Wed, 29 Nov 2006 09:40:06 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061129094006.9F9D11A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jorton Date: Wed Nov 29 01:40:05 2006 New Revision: 480497 URL: http://svn.apache.org/viewvc?view=rev&rev=480497 Log: * include/apr_network_io.h: Avoid inappropriate use of the word "interface". Modified: apr/apr/trunk/include/apr_network_io.h Modified: apr/apr/trunk/include/apr_network_io.h URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_network_io.h?view=diff&rev=480497&r1=480496&r2=480497 ============================================================================== --- apr/apr/trunk/include/apr_network_io.h (original) +++ apr/apr/trunk/include/apr_network_io.h Wed Nov 29 01:40:05 2006 @@ -164,7 +164,8 @@ /** @} */ /** - * Enum to tell us if we're interested in remote or local socket + * Enum used to denote either the local and remote endpoint of a + * connection. */ typedef enum { APR_LOCAL, @@ -653,9 +654,11 @@ int *atmark); /** - * Return an apr_sockaddr_t from an apr_socket_t + * Return an address associated with a socket; either the address to + * which the socket is bound locally or the the address of the peer + * to which the socket is connected. * @param sa The returned apr_sockaddr_t. - * @param which Which interface do we want the apr_sockaddr_t for? + * @param which Whether to retrieve the local or remote address * @param sock The socket to use */ APR_DECLARE(apr_status_t) apr_socket_addr_get(apr_sockaddr_t **sa,