diff options
author | Othmar Gsenger <otti@anytun.org> | 2008-02-29 20:08:18 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2008-02-29 20:08:18 +0000 |
commit | 49ee5bcf33baadb6a2f822eab843b39d13fd55f0 (patch) | |
tree | 965d11e1beeb65e6be4a093de10ff6556c142f7d | |
parent | removed debug statemet (diff) |
cleaned up howtables output
-rw-r--r-- | anytun-showtables.cpp | 5 |
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[]) |