Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 17215 invoked by uid 500); 13 Nov 2001 19:48:21 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 17204 invoked from network); 13 Nov 2001 19:48:21 -0000 Date: 13 Nov 2001 19:35:15 -0000 Message-ID: <20011113193515.94587.qmail@icarus.apache.org> From: trawick@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include apr_network_io.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 01/11/13 11:35:15 Modified: include apr_network_io.h Log: fix some typos and small inaccuracies in the comments Revision Changes Path 1.112 +6 -6 apr/include/apr_network_io.h Index: apr_network_io.h =================================================================== RCS file: /home/cvs/apr/include/apr_network_io.h,v retrieving revision 1.111 retrieving revision 1.112 diff -u -r1.111 -r1.112 --- apr_network_io.h 2001/08/15 21:02:53 1.111 +++ apr_network_io.h 2001/11/13 19:35:15 1.112 @@ -282,7 +282,7 @@ apr_pool_t *cont); /** - * Shutdown either reading, writing, or both sides of a tcp socket. + * Shutdown either reading, writing, or both sides of a socket. * @param thesocket The socket to close * @param how How to shutdown the socket. One of: *
  @@ -297,7 +297,7 @@
                                          apr_shutdown_how_e how);
   
   /**
  - * Close a tcp socket.
  + * Close a socket.
    * @param thesocket The socket to close 
    */
   APR_DECLARE(apr_status_t) apr_socket_close(apr_socket_t *thesocket);
  @@ -680,7 +680,7 @@
    * @param events The events to stop looking for during the poll.  One of:
    * 
    *            APR_POLLIN       signal if read will not block
  - *            APR_POLLPRI      signal if prioirty data is availble to be read
  + *            APR_POLLPRI      signal if priority data is available to be read
    *            APR_POLLOUT      signal if write will not block
    * 
*/ @@ -701,7 +701,7 @@ * @param events The events to clear from all sockets. One of: *
    *            APR_POLLIN       signal if read will not block
  - *            APR_POLLPRI      signal if prioirty data is availble to be read
  + *            APR_POLLPRI      signal if priority data is available to be read
    *            APR_POLLOUT      signal if write will not block
    * 
*/ @@ -713,7 +713,7 @@ * @param event The returned events for the socket. One of: *
    *            APR_POLLIN       Data is available to be read 
  - *            APR_POLLPRI      Prioirty data is availble to be read
  + *            APR_POLLPRI      Priority data is availble to be read
    *            APR_POLLOUT      Write will succeed
    *            APR_POLLERR      An error occurred on the socket
    *            APR_POLLHUP      The connection has been terminated
  @@ -730,7 +730,7 @@
   /**
    * Return the data associated with the current poll.
    * @param pollfd The currently open pollfd.
  - * @param key The key to use for retreiving data associated with a poll struct.
  + * @param key The key to use for retrieving data associated with a poll struct.
    * @param data The user data associated with the pollfd.
    */
   APR_DECLARE(apr_status_t) apr_poll_data_get(apr_pollfd_t *pollfd,