summaryrefslogtreecommitdiff
path: root/anytun-showtables.cpp
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-02-29 20:08:18 +0000
committerOthmar Gsenger <otti@anytun.org>2008-02-29 20:08:18 +0000
commit49ee5bcf33baadb6a2f822eab843b39d13fd55f0 (patch)
tree965d11e1beeb65e6be4a093de10ff6556c142f7d /anytun-showtables.cpp
parentremoved debug statemet (diff)
cleaned up howtables output
Diffstat (limited to 'anytun-showtables.cpp')
-rw-r--r--anytun-showtables.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/anytun-showtables.cpp b/anytun-showtables.cpp
index a3fb505..0a48a12 100644
--- a/anytun-showtables.cpp
+++ b/anytun-showtables.cpp
@@ -54,9 +54,9 @@ void output(ConnectionList &cl)
{
ConnectionMap::iterator it = cl.getBeginUnlocked();
mux_t mux = it->first;
- std::cout << "Connection: Mux-ID: " << mux << std::endl;
+ std::cout << "Connection: " << mux << std::endl;
ConnectionParam &conn( it->second );
- std::cout << "Connection: Keyderivation-Type: " << conn.kd_.printType() << std::endl;
+ //std::cout << "Connection: Keyderivation-Type: " << conn.kd_.printType() << std::endl;
cl.clear();
}
else if( !gRoutingTable.empty() )
@@ -68,7 +68,6 @@ void output(ConnectionList &cl)
std::cout << mux << std::endl;
gRoutingTable.clear();
}
- std::cout << std::endl;
}
int main(int argc, char* argv[])