aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/xenmgr/lib/server/console.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/xenmgr/lib/server/console.py b/tools/xenmgr/lib/server/console.py
index 6db905dc0b..ad5ff59abd 100755
--- a/tools/xenmgr/lib/server/console.py
+++ b/tools/xenmgr/lib/server/console.py
@@ -36,9 +36,11 @@ class ConsoleProtocol(protocol.Protocol):
self.loseConnection()
return
else:
- self.transport.write("Connected to console %d on domain %d\n"
- % (self.idx, self.controller.dom))
- self.setTelnetTransmitBinary()
+ # KAF: A nice quiet successful connect. Don't bother with telnet
+ # control sequence -- telnet is not the appropriate protocol here.
+ #self.transport.write("Connected to console %d on domain %d\n"
+ # % (self.idx, self.controller.dom))
+ #self.setTelnetTransmitBinary()
eserver.inject('xend.console.connect',
[self.idx, self.addr[0], self.addr[1]])