summaryrefslogtreecommitdiff
path: root/node/OutboundMulticast.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2019-03-22 15:50:15 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2019-03-22 15:50:15 -0700
commit2966eac64f549bb5f5f79ddace14dd0bc59c3270 (patch)
tree3df91e2845fd99619a74cf1308296970b548c47b /node/OutboundMulticast.cpp
parentd5303560556cfae45c07214d1c0379d8a048fa3d (diff)
downloadinfinitytier-2966eac64f549bb5f5f79ddace14dd0bc59c3270.tar.gz
infinitytier-2966eac64f549bb5f5f79ddace14dd0bc59c3270.zip
Get rid of ZT_FAST_MEMCPY because this is not really needed.
Diffstat (limited to 'node/OutboundMulticast.cpp')
-rw-r--r--node/OutboundMulticast.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/OutboundMulticast.cpp b/node/OutboundMulticast.cpp
index 90b4382f..dc513e84 100644
--- a/node/OutboundMulticast.cpp
+++ b/node/OutboundMulticast.cpp
@@ -78,7 +78,7 @@ void OutboundMulticast::init(
if (!disableCompression)
_packet.compress();
- ZT_FAST_MEMCPY(_frameData,payload,_frameLen);
+ memcpy(_frameData,payload,_frameLen);
}
void OutboundMulticast::sendOnly(const RuntimeEnvironment *RR,void *tPtr,const Address &toAddr)