Skip to content

Commit

Permalink
fix debug beacon port
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Jan 13, 2025
1 parent e21e455 commit 14fbb47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ Server::Pvt::Pvt(const Config &conf)
#endif

for(const auto& addr : effective.beaconDestinations) {
beaconDest.emplace_back(addr.c_str(), &effective);
beaconDest.emplace_back(addr.c_str(), nullptr, effective.udp_port);
log_debug_printf(serversetup, "Will send beacons to %s\n",
std::string(SB()<<beaconDest.back()).c_str());
}
Expand Down

0 comments on commit 14fbb47

Please sign in to comment.