source:
trunk/vnc/vnc_server/vncproxy.py
@
241
Last change on this file since 241 was 115, checked in by ecprice, 17 years ago | |
---|---|
File size: 215 bytes |
Rev | Line | |
---|---|---|
[115] | 1 | #! /usr/bin/python |
2 | from twisted.internet import reactor | |
3 | import vncexternalauth | |
4 | ||
5 | if '__main__' == __name__: | |
6 | reactor.listenTCP(10003,vncexternalauth.VNCAuthFactory("./vncauth.log", "localhost")) | |
7 | reactor.run() |
Note: See TracBrowser
for help on using the repository browser.