dont use optional

pull/1091/head
Jeff Becker 5 years ago committed by Jason Rhinelander
parent 23bcfa4abb
commit 4d4b33607f

@ -462,13 +462,11 @@ namespace llarp
{
/// number of routers to publish to
static constexpr size_t PublishRedundancy = 2;
const auto maybe =
const auto paths =
GetManyPathsWithUniqueEndpoints(this, PublishRedundancy);
if(not maybe.has_value())
return false;
// do publishing for each path selected
size_t published = 0;
for(const auto& path : maybe.value())
for(const auto& path : paths)
{
if(PublishIntroSetVia(i, r, path))
{
@ -970,17 +968,13 @@ namespace llarp
auto& lookups = m_state->m_PendingServiceLookups;
const auto maybe =
const auto paths =
GetManyPathsWithUniqueEndpoints(this, NumParalellLookups);
if(not maybe.has_value())
{
return false;
}
using namespace std::placeholders;
size_t lookedUp = 0;
const dht::Key_t location = remote.ToKey();
for(const auto& path : maybe.value())
for(const auto& path : paths)
{
HiddenServiceAddressLookup* job = new HiddenServiceAddressLookup(
this, util::memFn(&Endpoint::OnLookup, this), location,

@ -43,7 +43,7 @@ namespace llarp
};
template < typename Endpoint_t >
static absl::optional< path::Path::UniqueEndpointSet_t >
static path::Path::UniqueEndpointSet_t
GetManyPathsWithUniqueEndpoints(Endpoint_t* ep, size_t N, size_t tries = 10)
{
path::Path::UniqueEndpointSet_t paths;
@ -54,9 +54,7 @@ namespace llarp
if(path)
paths.emplace(path);
} while(tries > 0 and paths.size() < N);
if(paths.size() == N)
return paths;
return {};
return paths;
}
} // namespace service

@ -228,10 +228,8 @@ namespace llarp
return;
const auto addr = currentIntroSet.A.Addr();
const auto maybe = GetManyPathsWithUniqueEndpoints(this, 2);
if(not maybe.has_value())
return;
for(const auto& path : maybe.value())
const auto paths = GetManyPathsWithUniqueEndpoints(this, 2);
for(const auto& path : paths)
{
HiddenServiceAddressLookup* job = new HiddenServiceAddressLookup(
m_Endpoint,

Loading…
Cancel
Save