コード例 #1
0
ファイル: stream.py プロジェクト: neubot/neubot-runtime
 def __init__(self, poller, parent, sock, conf, chunk):
     logging.debug("chargen stream")
     Stream.__init__(self, poller, parent, sock, conf)
     self._buffer = b"A" * chunk
コード例 #2
0
ファイル: stream.py プロジェクト: neubot/neubot-runtime
 def __init__(self, poller, parent, sock, conf):
     logging.debug("discard stream")
     Stream.__init__(self, poller, parent, sock, conf)
コード例 #3
0
ファイル: stream.py プロジェクト: neubot/neubot-runtime
 def __init__(self, poller, parent, sock, conf):
     logging.debug("echo stream")
     Stream.__init__(self, poller, parent, sock, conf)
     self._buffer = deque()