summaryrefslogtreecommitdiff
path: root/include/apr_network_io.h
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2005-02-15 08:26:46 +0000
committerJoe Orton <jorton@apache.org>2005-02-15 08:26:46 +0000
commit7ddde0ec23467fcac87db284a9e28189b8be187f (patch)
tree28baecf49e8ee8bb87416735e1a4bb675c8e4883 /include/apr_network_io.h
parent2c192aafcd129383a4bd8b1689b74447aff47d52 (diff)
downloadapr-7ddde0ec23467fcac87db284a9e28189b8be187f.tar.gz
* network_io/unix/multicast.c (apr_mcast_leave): Rename 'leave'
argument to 'addr' to fix Tru64 5.0 build, where "leave" is #defined to some weird builtin. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@153917 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_network_io.h')
-rw-r--r--include/apr_network_io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_network_io.h b/include/apr_network_io.h
index a67c9bb6e..68d8a7c49 100644
--- a/include/apr_network_io.h
+++ b/include/apr_network_io.h
@@ -771,14 +771,14 @@ APR_DECLARE(apr_status_t) apr_mcast_join(apr_socket_t *sock,
* Leave a Multicast Group. All arguments must be the same as
* apr_mcast_join.
* @param sock The socket to leave a multicast group
- * @param leave The address of the multicast group to leave
+ * @param addr The address of the multicast group to leave
* @param iface Address of the interface to use. If NULL is passed, the
* default multicast interface will be used. (OS Dependent)
* @param source Source Address to accept transmissions from (non-NULL
* implies Source-Specific Multicast)
*/
APR_DECLARE(apr_status_t) apr_mcast_leave(apr_socket_t *sock,
- apr_sockaddr_t *leave,
+ apr_sockaddr_t *addr,
apr_sockaddr_t *iface,
apr_sockaddr_t *source);