summaryrefslogtreecommitdiff
path: root/osdep
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2016-06-21 07:32:58 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2016-06-21 07:32:58 -0700
commitb2d048aa0e01a350eaf524cc752ca5fa9a5a1140 (patch)
tree87c21bc63242efe25ffe4fcb1cde3ff8518046d6 /osdep
parent3ee15e65aa14a8aa661c522c5fb183a0fdfed8b3 (diff)
downloadinfinitytier-b2d048aa0e01a350eaf524cc752ca5fa9a5a1140.tar.gz
infinitytier-b2d048aa0e01a350eaf524cc752ca5fa9a5a1140.zip
Make Dictionary templatable so it can be used where we want a higher capacity.
Diffstat (limited to 'osdep')
-rw-r--r--osdep/LinuxEthernetTap.cpp2
-rw-r--r--osdep/OSXEthernetTap.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/osdep/LinuxEthernetTap.cpp b/osdep/LinuxEthernetTap.cpp
index c43c7bb7..b10c4cd1 100644
--- a/osdep/LinuxEthernetTap.cpp
+++ b/osdep/LinuxEthernetTap.cpp
@@ -95,7 +95,7 @@ LinuxEthernetTap::LinuxEthernetTap(
// Try to recall our last device name, or pick an unused one if that fails.
bool recalledDevice = false;
std::string devmapbuf;
- Dictionary devmap;
+ Dictionary<8194> devmap;
if (OSUtils::readFile((_homePath + ZT_PATH_SEPARATOR_S + "devicemap").c_str(),devmapbuf)) {
devmap.load(devmapbuf.c_str());
char desiredDevice[128];
diff --git a/osdep/OSXEthernetTap.cpp b/osdep/OSXEthernetTap.cpp
index 9921049f..e8c5c1ea 100644
--- a/osdep/OSXEthernetTap.cpp
+++ b/osdep/OSXEthernetTap.cpp
@@ -354,7 +354,7 @@ OSXEthernetTap::OSXEthernetTap(
// Try to reopen the last device we had, if we had one and it's still unused.
bool recalledDevice = false;
std::string devmapbuf;
- Dictionary devmap;
+ Dictionary<8194> devmap;
if (OSUtils::readFile((_homePath + ZT_PATH_SEPARATOR_S + "devicemap").c_str(),devmapbuf)) {
devmap.load(devmapbuf.c_str());
char desiredDevice[128];