コード例 #1
0
ファイル: _binarypack.py プロジェクト: dottobr83/pokernetwork
    def __init__(self):
        BaseProtocol.__init__(self)

        self._data = b""
        self._out_buffer = [] # as long as not established outgoing packets are buffered

        self._cur_packet_length = None # None: not currently on any packet
        self._ignore_incoming = False
コード例 #2
0
    def __init__(self):
        BaseProtocol.__init__(self)

        self._data = b""
        self._out_buffer = [
        ]  # as long as not established outgoing packets are buffered

        self._cur_packet_length = None  # None: not currently on any packet
        self._ignore_incoming = False
コード例 #3
0
 def _protocolEstablished(self):
     BaseProtocol.connectionMade(self)
     out_buffer, self._out_buffer = self._out_buffer, []
     self.sendPackets(out_buffer)
     self.protocolEstablished()
コード例 #4
0
    def __init__(self):
        BaseProtocol.__init__(self)

        self._numeric_type = True
        self._unpacker = _msgpack.Unpacker()
        self._packer = _msgpack.Packer()
コード例 #5
0
ファイル: _msgpack.py プロジェクト: dottobr83/pokernetwork
    def __init__(self):
        BaseProtocol.__init__(self)

        self._numeric_type = True
        self._unpacker = _msgpack.Unpacker()
        self._packer = _msgpack.Packer()
コード例 #6
0
ファイル: _binarypack.py プロジェクト: dottobr83/pokernetwork
 def _protocolEstablished(self):
     BaseProtocol.connectionMade(self)
     out_buffer, self._out_buffer = self._out_buffer, []
     self.sendPackets(out_buffer)
     self.protocolEstablished()