summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-02-16 10:12:45 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-02-16 10:12:45 +0000
commit257a9508cdcbbf1ee03837bd9fe42d24b5b48a66 (patch)
treea2f892dfbf4f16fe4440fa9efbc8519db32a9c2b /include
parent64d635923b72eb0f6e3dc4762671d71a70409cf1 (diff)
downloadlibapr-257a9508cdcbbf1ee03837bd9fe42d24b5b48a66.tar.gz
Clarify the changeover with APR 1.0
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64360 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_network_io.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/apr_network_io.h b/include/apr_network_io.h
index a40637fc3..b21118481 100644
--- a/include/apr_network_io.h
+++ b/include/apr_network_io.h
@@ -285,7 +285,8 @@ struct apr_hdtr_t {
/**
* Create a socket.
- * @remark With APR 1.0, this function will pick up a new protocol parameter.
+ * @remark With APR 1.0, this function follows the prototype
+ * of apr_socket_create_ex.
* @param new_sock The new socket that has been set up.
* @param family The address family of the socket (e.g., APR_INET).
* @param type The type of the socket (e.g., SOCK_STREAM).
@@ -297,7 +298,8 @@ APR_DECLARE(apr_status_t) apr_socket_create(apr_socket_t **new_sock,
/**
* Create a socket.
- * @remark With APR 1.0, this function will be removed.
+ * @remark With APR 1.0, this function is deprecated and apr_socket_create
+ * follows this prototype.
* @param new_sock The new socket that has been set up.
* @param family The address family of the socket (e.g., APR_INET).
* @param type The type of the socket (e.g., SOCK_STREAM).