summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-01-15 11:17:04 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-01-15 11:17:04 +0100
commitaceac7234ef1ef995de5ade1e4daa27220960fb3 (patch)
tree1c611a916ca2b72fd0df5795ae33e8e4f6b6edd2
parent041537498bf9bc6cd673518b79b56c152579ac13 (diff)
downloadATCD-aceac7234ef1ef995de5ade1e4daa27220960fb3.tar.gz
More cleanup
* ACE/ace/README: * ACE/ace/os_include/sys/os_socket.h:
-rw-r--r--ACE/ace/README3
-rw-r--r--ACE/ace/os_include/sys/os_socket.h2
2 files changed, 0 insertions, 5 deletions
diff --git a/ACE/ace/README b/ACE/ace/README
index 5c67df99ebd..f2db8a409f6 100644
--- a/ACE/ace/README
+++ b/ACE/ace/README
@@ -494,9 +494,6 @@ ACE_HAS_SIG_ATOMIC_T Compiler/platform defines the
sig_atomic_t typedef
ACE_HAS_SIG_C_FUNC Compiler requires extern "C"
functions for signals.
-ACE_HAS_SIZET_SOCKET_LEN OS/compiler uses size_t *
- rather than int * for socket
- lengths
ACE_HAS_SOCKADDR_IN_SIN_LEN Platform has sin_len member in struct
sockaddr_in.
ACE_HAS_SOCKADDR_IN6_SIN_LEN Platform has sin6_len member in struct
diff --git a/ACE/ace/os_include/sys/os_socket.h b/ACE/ace/os_include/sys/os_socket.h
index e569a6f8fc8..3ffee2e03b6 100644
--- a/ACE/ace/os_include/sys/os_socket.h
+++ b/ACE/ace/os_include/sys/os_socket.h
@@ -262,8 +262,6 @@ extern "C"
#if !defined (ACE_SOCKET_LEN)
#if defined (ACE_HAS_SOCKLEN_T)
typedef socklen_t ACE_SOCKET_LEN;
-#elif defined (ACE_HAS_SIZET_SOCKET_LEN)
-typedef size_t ACE_SOCKET_LEN;
#else
typedef int ACE_SOCKET_LEN;
#endif /* ACE_HAS_SOCKLEN_T */