summaryrefslogtreecommitdiff
path: root/ace/os_include/os_netdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/os_include/os_netdb.h')
-rw-r--r--ace/os_include/os_netdb.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/ace/os_include/os_netdb.h b/ace/os_include/os_netdb.h
index b02ff121d63..34e006f0f26 100644
--- a/ace/os_include/os_netdb.h
+++ b/ace/os_include/os_netdb.h
@@ -49,24 +49,6 @@ extern "C"
{
#endif /* __cplusplus */
-#if defined (ACE_PSOS)
- struct hostent {
- char *h_name; /* official name of host */
- char **h_aliases; /* alias list */
- int h_addrtype; /* host address type */
- int h_length; /* address length */
- char **h_addr_list; /* (first, only) address from name server */
-# define h_addr h_addr_list[0] /* the first address */
- };
-
- struct servent {
- char *s_name; /* official service name */
- char **s_aliases; /* alias list */
- int s_port; /* port # */
- char *s_proto; /* protocol to use */
- };
-#endif /* ACE_PSOS */
-
#if defined (ACE_HAS_STRUCT_NETDB_DATA)
typedef char ACE_HOSTENT_DATA[sizeof(struct hostent_data)];
typedef char ACE_SERVENT_DATA[sizeof(struct servent_data)];