dreid 00/11/10 11:21:31
Modified: src/lib/apr/include apr_network_io.h Log: A few minor tweaks and some clarification of the purpose of a field. Submitted by: Jeff Trawick <[EMAIL PROTECTED]> Revision Changes Path 1.68 +4 -4 apache-2.0/src/lib/apr/include/apr_network_io.h Index: apr_network_io.h =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/include/apr_network_io.h,v retrieving revision 1.67 retrieving revision 1.68 diff -u -r1.67 -r1.68 --- apr_network_io.h 2000/11/10 16:16:06 1.67 +++ apr_network_io.h 2000/11/10 19:21:31 1.68 @@ -142,7 +142,7 @@ * * It's defined here as I think it should all be platform safe... */ -typedef struct { +typedef struct apr_sockaddr_t { apr_pool_t *pool; /* The pool to use... */ char *hostname; /* The hostname */ char *servname; /* This is either a string of the port number or @@ -160,9 +160,9 @@ * 16 for v4 or 46 for v6 * used in inet_ntop... */ - void *addr_ptr; /* This should be set to point to the - * sockaddr structure address we're using... - * i.e. sa.sin.sin_addr or sa.sin6.sin6_addr + void *ipaddr_ptr; /* This points to the IP address + * structure within the appropriate + * sockaddr structure. */ } apr_sockaddr_t;