summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2015-10-13 12:10:44 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2015-10-13 12:10:44 -0700
commit5d2f523e81a56a33405d2b98ccef9d384e269f34 (patch)
tree5c1e62b468d460a43a19962c9bbcc4149d260f0a /service
parent05677f57e2e6bed58467198f4e65b68a236b00c2 (diff)
downloadinfinitytier-5d2f523e81a56a33405d2b98ccef9d384e269f34.tar.gz
infinitytier-5d2f523e81a56a33405d2b98ccef9d384e269f34.zip
World stuff...
Diffstat (limited to 'service')
-rw-r--r--service/ControlPlane.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/service/ControlPlane.cpp b/service/ControlPlane.cpp
index 6e731bdc..dd755a30 100644
--- a/service/ControlPlane.cpp
+++ b/service/ControlPlane.cpp
@@ -182,14 +182,12 @@ static std::string _jsonEnumerate(unsigned int depth,const ZT_PeerPhysicalPath *
"%s\t\"address\": \"%s\",\n"
"%s\t\"lastSend\": %llu,\n"
"%s\t\"lastReceive\": %llu,\n"
- "%s\t\"fixed\": %s,\n"
"%s\t\"active\": %s,\n"
"%s\t\"preferred\": %s\n"
"%s}",
prefix,_jsonEscape(reinterpret_cast<const InetAddress *>(&(pp[i].address))->toString()).c_str(),
prefix,pp[i].lastSend,
prefix,pp[i].lastReceive,
- prefix,(pp[i].fixed == 0) ? "false" : "true",
prefix,(pp[i].active == 0) ? "false" : "true",
prefix,(pp[i].preferred == 0) ? "false" : "true",
prefix);