Browse Source

use std::vector for address list

pull/1696/head
orignal 3 years ago
parent
commit
7def2fa6a3
  1. 1
      libi2pd/RouterInfo.cpp
  2. 3
      libi2pd/RouterInfo.h

1
libi2pd/RouterInfo.cpp

@ -194,6 +194,7 @@ namespace data @@ -194,6 +194,7 @@ namespace data
auto addresses = boost::make_shared<Addresses>();
uint8_t numAddresses;
s.read ((char *)&numAddresses, sizeof (numAddresses)); if (!s) return;
addresses->reserve (numAddresses);
for (int i = 0; i < numAddresses; i++)
{
uint8_t supportedTransports = 0;

3
libi2pd/RouterInfo.h

@ -13,7 +13,6 @@ @@ -13,7 +13,6 @@
#include <string>
#include <map>
#include <vector>
#include <list>
#include <iostream>
#include <boost/asio.hpp>
#include <boost/shared_ptr.hpp>
@ -157,7 +156,7 @@ namespace data @@ -157,7 +156,7 @@ namespace data
bool IsV4 () const { return (caps & AddressCaps::eV4) || (host.is_v4 () && !host.is_unspecified ()); };
bool IsV6 () const { return (caps & AddressCaps::eV6) || (host.is_v6 () && !host.is_unspecified ()); };
};
typedef std::list<std::shared_ptr<Address> > Addresses;
typedef std::vector<std::shared_ptr<Address> > Addresses;
RouterInfo ();
RouterInfo (const std::string& fullPath);

Loading…
Cancel
Save