Changed VNC proxy to spew to stdout instead of an arbitrary logfile so that it will...
[invirt/packages/invirt-vnc-server.git] / code / vncproxy.py
index 310b8b5..c40570d 100755 (executable)
@@ -8,6 +8,5 @@ sslContext = ssl.DefaultOpenSSLContextFactory(
 )
 
 if '__main__' == __name__:
-    reactor.listenSSL(10003,vncexternalauth.VNCAuthFactory("./vncauth.log", "localhost"), contextFactory=sslContext)
-    #reactor.listenTCP(10003,vncexternalauth.VNCAuthFactory("./vncauth.log", "localhost"))
+    reactor.listenSSL(10003,vncexternalauth.VNCAuthFactory("localhost"), contextFactory=sslContext)
     reactor.run()