trawick 00/11/03 07:36:33
Modified: src/lib/apr/include apr_network_io.h Log: Fix a coupl of misspellings; make some doc more consistent. Revision Changes Path 1.58 +5 -5 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.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- apr_network_io.h 2000/11/02 03:02:44 1.57 +++ apr_network_io.h 2000/11/03 15:36:17 1.58 @@ -372,7 +372,7 @@ /** * Associate a local port with a socket. - * @param sock The socket to set + * @param sock The socket to set. * @param port The local port this socket will be dealing with. * @tip This does not bind the two together, it is just telling apr * that this socket is going to use this port if possible. If @@ -381,8 +381,8 @@ apr_status_t apr_set_local_port(apr_socket_t *sock, apr_uint32_t port); /** - * Assocaite a remote port with a socket. - * @param sock The socket to enquire about. + * Associate a remote port with a socket. + * @param sock The socket to set. * @param port The local port this socket will be dealing with. * @tip This does not make a connection to the remote port, it is just * telling apr which port apr_connect() should attempt to connect to. @@ -404,7 +404,7 @@ apr_status_t apr_get_remote_port(apr_uint32_t *port, apr_socket_t *sock); /** - * Assocaite a local socket addr with an apr socket. + * Associate a local socket addr with an apr socket. * @param sock The socket to use * @param addr The IP address to attach to the socket. * Use APR_ANYADDR to use any IP addr on the machine. @@ -414,7 +414,7 @@ apr_status_t apr_set_local_ipaddr(apr_socket_t *sock, const char *addr); /** - * Assocaite a remote socket addr with an apr socket. + * Associate a remote socket addr with an apr socket. * @param sock The socket to use * @param addr The IP address to attach to the socket. * @tip This does not make a connection to the remote address, it is just