source: trunk/packages/sipb-xen-vnc-server/code/vncproxy.py @ 286

Last change on this file since 286 was 115, checked in by ecprice, 17 years ago

VNC server commit.

File size: 215 bytes
Line 
1#! /usr/bin/python
2from twisted.internet import reactor
3import vncexternalauth
4
5if '__main__' == __name__:
6    reactor.listenTCP(10003,vncexternalauth.VNCAuthFactory("./vncauth.log", "localhost"))
7    reactor.run()
Note: See TracBrowser for help on using the repository browser.