Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 29073 invoked by uid 500); 11 Aug 2001 17:09:51 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 29062 invoked from network); 11 Aug 2001 17:09:51 -0000 Message-ID: <3B7566F6.90107@cnet.com> Date: Sat, 11 Aug 2001 10:10:14 -0700 From: Ian Holsman User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.3+) Gecko/20010810 X-Accept-Language: en-us MIME-Version: 1.0 To: dev@apr.apache.org Subject: [PATCHDOX] apr_portable.h Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Fixing the ones that complain the most first Index: apr_portable.h =================================================================== RCS file: /home/cvspublic/apr/include/apr_portable.h,v retrieving revision 1.66 diff -u -r1.66 apr_portable.h --- apr_portable.h 2001/08/06 21:11:15 1.66 +++ apr_portable.h 2001/08/11 17:05:15 @@ -58,9 +58,14 @@ */ #ifndef APR_PORTABLE_H #define APR_PORTABLE_H - +/* + * @file apr_portable.h + * @brief APR Portability Routines + */ /** - * @package APR portability Routines + * @defgroup APR_portability Portability Routines + * @ingroup APR + * @{ */ #include "apr.h" @@ -202,15 +207,19 @@ #endif /** + * @typedef apr_os_sock_t + * @brief alias for local OS socket + */ +/** * everything APR needs to know about an active socket to construct * an APR socket from it; currently, this is platform-independent */ struct apr_os_sock_info_t { - apr_os_sock_t *os_sock; /* always required */ - struct sockaddr *local; /* NULL if not yet bound */ - struct sockaddr *remote; /* NULL if not connected */ - int family; /* always required (APR_INET, APR_INET6, etc. */ - int type; /* always required (SOCK_STREAM, SOCK_DGRAM, etc. */ + apr_os_sock_t *os_sock; /**< always required */ + struct sockaddr *local; /**< NULL if not yet bound */ + struct sockaddr *remote; /**< NULL if not connected */ + int family; /**< always required (APR_INET, APR_INET6, etc. */ + int type; /**< always required (SOCK_STREAM, SOCK_DGRAM, etc. */ }; typedef struct apr_os_sock_info_t apr_os_sock_info_t; @@ -460,5 +469,5 @@ #ifdef __cplusplus } #endif - +/** @} */