rename muxed_conn

This commit is contained in:
zixuanzh
2018-11-20 20:28:41 -05:00
parent 4e2749c915
commit e047752d82
11 changed files with 9 additions and 54 deletions

View File

@ -1,4 +1,4 @@
from muxer.mplex.muxed_connection import MuxedConn
from stream_muxer.mplex.mplex import Mplex
class TransportUpgrader():
@ -24,4 +24,4 @@ class TransportUpgrader():
# For PoC, no security, default to mplex
# TODO do exchange to determine multiplexer
return MuxedConn(conn, initiator)
return Mplex(conn, initiator)