summaryrefslogtreecommitdiff
path: root/include/apr_network_io.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2003-12-05 01:02:31 +0000
committerJeff Trawick <trawick@apache.org>2003-12-05 01:02:31 +0000
commitcbcf74f79ca230ea97ebafa9f7cf6a83821accd7 (patch)
treee25736dec404758c7481fc20362fb0c60dbbe1b7 /include/apr_network_io.h
parent678ec801db5116365949870fc563a44acecb8eec (diff)
downloadapr-cbcf74f79ca230ea97ebafa9f7cf6a83821accd7.tar.gz
axe apr_sockaddr_port_set() and apr_sockaddr_port_get() from APR
1.0 API git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64811 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_network_io.h')
-rw-r--r--include/apr_network_io.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/apr_network_io.h b/include/apr_network_io.h
index 0e6a645dc..9d1c6a6e0 100644
--- a/include/apr_network_io.h
+++ b/include/apr_network_io.h
@@ -678,22 +678,6 @@ APR_DECLARE(apr_status_t) apr_socket_addr_get(apr_sockaddr_t **sa,
apr_socket_t *sock);
/**
- * Set the port in an APR socket address.
- * @param sockaddr The socket address to set.
- * @param port The port to be stored in the socket address.
- */
-APR_DECLARE(apr_status_t) apr_sockaddr_port_set(apr_sockaddr_t *sockaddr,
- apr_port_t port);
-
-/**
- * Return the port in an APR socket address.
- * @param port The port from the socket address.
- * @param sockaddr The socket address to reference.
- */
-APR_DECLARE(apr_status_t) apr_sockaddr_port_get(apr_port_t *port,
- apr_sockaddr_t *sockaddr);
-
-/**
* Return the IP address (in numeric address string format) in
* an APR socket address. APR will allocate storage for the IP address
* string from the pool of the apr_sockaddr_t.