Skip to content

Commit

Permalink
Merge pull request #18 from OpenDDS/opendds-3.27
Browse files Browse the repository at this point in the history
Updated for recent changes in OpenDDS transport API
  • Loading branch information
iguessthislldo authored Feb 5, 2024
2 parents e346cf7 + 9266ca6 commit 7a56951
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/dds_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,11 @@ bool DDSManager::joinDomain(const int& domainID, const std::string& config, std:

newRtpsTransport->max_packet_size(defaultRtpsTransport->max_packet_size());
newRtpsTransport->max_samples_per_packet(defaultRtpsTransport->max_samples_per_packet());
newRtpsTransport->multicast_group_address(defaultRtpsTransport->multicast_group_address());
newRtpsTransport->multicast_group_address(defaultRtpsTransport->multicast_group_address(
#if OPENDDS_VERSION_AT_LEAST(3, 27, 0)
domainID
#endif
));
newRtpsTransport->multicast_interface_ = (defaultRtpsTransport->multicast_interface_);
newRtpsTransport->nak_depth_ = defaultRtpsTransport->nak_depth_;
newRtpsTransport->nak_response_delay_ = defaultRtpsTransport->nak_response_delay_;
Expand Down

0 comments on commit 7a56951

Please sign in to comment.