Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/optitrack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ namespace libmotioncapture {

// Create the socket so that multiple may be bound to the same address.
boost::asio::ip::udp::endpoint listen_endpoint(
listen_address_boost, port_data);
boost::asio::ip::address_v4::any(), port_data);
pImpl->socket.open(listen_endpoint.protocol());
pImpl->socket.set_option(boost::asio::ip::udp::socket::reuse_address(true));
pImpl->socket.bind(listen_endpoint);
Expand Down
Loading