summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp
index da9c3eb7e60..9a86f61ed39 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp
@@ -115,7 +115,7 @@ TAO_UIPMC_Transport::messaging_object (void)
struct MIOP_Packet
{
- iovec iov[IOV_MAX];
+ iovec iov[ACE_IOV_MAX];
int iovcnt;
int length;
};
@@ -299,7 +299,7 @@ TAO_UIPMC_Transport::send_i (iovec *iov, int iovcnt,
// Check if we've filled up this fragment or if we've run out of
// iov entries.
if (current_fragment->length == MIOP_MAX_DGRAM_SIZE ||
- current_fragment->iovcnt == IOV_MAX)
+ current_fragment->iovcnt == ACE_IOV_MAX)
{
// Make a new fragment.
num_fragments++;