Esempio n. 1
0
    def __init__(self):
        GeneratorWrapperProtocol.__init__(self)

        self.bytes_read = 0
        self.session_init_time = None

        # handshaker gets instantiated on connection
        self._hs = None

        # demuxer and muxer get instantiated on successful handshake
        self._demuxer = None
        self.muxer = None
Esempio n. 2
0
    def __init__(self):
        GeneratorWrapperProtocol.__init__(self)

        self.bytes_read = 0
        self.session_init_time = None

        # handshaker gets instantiated on connection
        self._hs = None

        # demuxer and muxer get instantiated on successful handshake
        self._demuxer = None
        self.muxer = None
Esempio n. 3
0
 def __init__(self, *a, **kw):
     GeneratorWrapperProtocol.__init__(self, *a, **kw)
     self.handshake_status = None
Esempio n. 4
0
 def __init__(self, *a, **kw):
     GeneratorWrapperProtocol.__init__(self, *a, **kw)
     self.handshake_status = None
Esempio n. 5
0
 def __init__(self, *a, **kw):
     GeneratorWrapperProtocol.__init__(self, *a, **kw)
     self.messages = []