diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-09-17 20:22:38 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-09-17 20:22:38 +0000 |
commit | 864bdc2174ef996fa55ed5466ee6d7862873feda (patch) | |
tree | 874e6c77f07c532cbd4ba6da53db76fc9438ba8a /ace/LSOCK.cpp | |
parent | ae77e4c4d6c693f9c4fce9811a2b9a241477ea63 (diff) | |
download | ATCD-864bdc2174ef996fa55ed5466ee6d7862873feda.tar.gz |
ChangeLog
Diffstat (limited to 'ace/LSOCK.cpp')
-rw-r--r-- | ace/LSOCK.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/LSOCK.cpp b/ace/LSOCK.cpp index 221c80e896e..002f36296c5 100644 --- a/ace/LSOCK.cpp +++ b/ace/LSOCK.cpp @@ -31,7 +31,7 @@ ACE_LSOCK::send_handle (const ACE_HANDLE handle) const { ACE_TRACE ("ACE_LSOCK::send_handle"); unsigned char a[2]; - ACE_IO_Vector_Base iov; + iovec iov; msghdr send_msg; #if defined (ACE_HAS_4_4BSD_SENDMSG_RECVMSG) char cmsgbuf[ACE_BSD_CONTROL_MSG_LEN]; @@ -72,7 +72,7 @@ ACE_LSOCK::recv_handle (ACE_HANDLE &handle, char *pbuf, int *len) const { ACE_TRACE ("ACE_LSOCK::recv_handle"); unsigned char a[2]; - ACE_IO_Vector_Base iov; + iovec iov; msghdr recv_msg; #if defined (ACE_HAS_4_4BSD_SENDMSG_RECVMSG) |