def __init__(self,singsock,connhandler,readlinecallback,videoHTTPServer):
     InstanceConnection.__init__(self, singsock, connhandler, readlinecallback)
     
     self.videoHTTPServer = videoHTTPServer
     self.urlpath = None
     self.cstreaminfo = {}
     self.shutteddown = False
示例#2
0
    def __init__(self, singsock, connhandler, readlinecallback,
                 videoHTTPServer):
        InstanceConnection.__init__(self, singsock, connhandler,
                                    readlinecallback)

        self.videoHTTPServer = videoHTTPServer
        self.urlpath = None
        self.cstreaminfo = {}
        self.shutteddown = False
示例#3
0
 def __init__(self,singsock,connhandler,readlinecallback,videoHTTPServer):
     InstanceConnection.__init__(self, singsock, connhandler, readlinecallback)
     
     self.bgapp = connhandler
     self.videoHTTPServer = videoHTTPServer
     self.urlpath = None
     self.cstreaminfo = {}
     self.shutteddown = False
     self.supportedvodevents = [VODEVENT_START,VODEVENT_PAUSE,VODEVENT_RESUME]