Ignore:
Timestamp:
Oct 28, 2008, 3:23:42 PM (16 years ago)
Author:
broder
Message:

Switch sipb-xen-vnc-server to use distutils

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/packages/sipb-xen-vnc-server/sipb-xen-vnc-server

    r1384 r1385  
    11#! /usr/bin/python
    22from twisted.internet import reactor, ssl
    3 import vncexternalauth
     3from invirt import vnc
    44
    55sslContext = ssl.DefaultOpenSSLContextFactory(
     
    99
    1010if '__main__' == __name__:
    11     reactor.listenSSL(10003,vncexternalauth.VNCAuthFactory("localhost"), contextFactory=sslContext)
     11    reactor.listenSSL(10003,vnc.VNCAuthFactory("localhost"), contextFactory=sslContext)
    1212    reactor.run()
Note: See TracChangeset for help on using the changeset viewer.