82840b5e6c
* Add generic protocol handler * Add generic protocol handler to stream muxing pipeline * Modify conn_handler to only deal with connections * mplex accept stream architecture changes * Add create generic protocol handler * Fix minor bugs * who would win 4 devs or one not * Debugging * rearch with handle_incoming infinite loop, seems to work, needs cleanup" * passing linting, still needs cleanup * fixing linting again; code still needs cleanup * fixing tests; code still needs cleanup * adding test cleanup and task cleanup, removing prints * linting, and cleanup complete * storing connections based on peer id * remove dead code * remove unnecessary peer_id
28 lines
699 B
Python
28 lines
699 B
Python
from libp2p.stream_muxer.mplex.mplex import Mplex
|
|
|
|
|
|
class TransportUpgrader:
|
|
# pylint: disable=no-self-use
|
|
|
|
def __init__(self, secOpt, muxerOpt):
|
|
self.sec = secOpt
|
|
self.muxer = muxerOpt
|
|
|
|
def upgrade_listener(self, transport, listeners):
|
|
"""
|
|
upgrade multiaddr listeners to libp2p-transport listeners
|
|
|
|
"""
|
|
|
|
def upgrade_security(self):
|
|
pass
|
|
|
|
def upgrade_connection(self, conn, generic_protocol_handler):
|
|
"""
|
|
upgrade raw connection to muxed connection
|
|
"""
|
|
|
|
# For PoC, no security, default to mplex
|
|
# TODO do exchange to determine multiplexer
|
|
return Mplex(conn, generic_protocol_handler)
|