Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardAH committed Dec 13, 2024
1 parent ae34bbb commit 0eba209
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ripple/app/misc/DatagramMonitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -996,16 +996,15 @@ class DatagramMonitor
void
monitorThread()
{

std::vector<std::pair<EndpointInfo, int>> endpoints;

for (auto const& epStr : app_.config().DATAGRAM_MONITOR)
{
auto endpoint = parseEndpoint(epStr);
endpoints.push_back(std::make_pair(endpoint, createSocket(endpoint)));
endpoints.push_back(
std::make_pair(endpoint, createSocket(endpoint)));
}


while (running_)
{
try
Expand Down

0 comments on commit 0eba209

Please sign in to comment.