summaryrefslogtreecommitdiff
path: root/include/arch/os2
diff options
context:
space:
mode:
authorgstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2003-11-02 20:51:18 +0000
committergstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2003-11-02 20:51:18 +0000
commit1316a6cb0d914e3a348277ad4827f237815cca37 (patch)
treee69f99b7070117306375338fdef294db85dbdfc8 /include/arch/os2
parentaf283c870c913232262ec9b0b6d258c1d2317f81 (diff)
downloadlibapr-1316a6cb0d914e3a348277ad4827f237815cca37.tar.gz
The use of "netmask" to hold options is a bit beyond bogus. That term has
an entirely different meaning in a networking context. Rename the socket field to "options". Also simplified the test/set macros to just take a socket. * include/arch/os2/apr_arch_networkio.h: * include/arch/unix/apr_arch_networkio.h: * include/arch/win32/apr_arch_networkio.h: - perform adjustments as above. change all uses. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64710 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch/os2')
-rw-r--r--include/arch/os2/apr_arch_networkio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/arch/os2/apr_arch_networkio.h b/include/arch/os2/apr_arch_networkio.h
index efd392a06..fbb9cb989 100644
--- a/include/arch/os2/apr_arch_networkio.h
+++ b/include/arch/os2/apr_arch_networkio.h
@@ -82,7 +82,7 @@ struct apr_socket_t {
int local_port_unknown;
int local_interface_unknown;
int remote_addr_unknown;
- apr_int32_t netmask;
+ apr_int32_t options;
apr_int32_t inherit;
sock_userdata_t *userdata;
};