mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
* 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
25 lines
865 B
Python
25 lines
865 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class ITransport(ABC):
|
|
|
|
@abstractmethod
|
|
def dial(self, multiaddr, self_id, options=None):
|
|
"""
|
|
dial a transport to peer listening on multiaddr
|
|
:param multiaddr: multiaddr of peer
|
|
:param self_id: peer_id of the dialer (to send to receier)
|
|
:param options: optional object
|
|
:return: list of multiaddrs
|
|
"""
|
|
|
|
@abstractmethod
|
|
def create_listener(self, handler_function, options=None):
|
|
"""
|
|
create listener on transport
|
|
:param options: optional object with properties the listener must have
|
|
:param handler_function: a function called when a new conntion is received
|
|
that takes a connection as argument which implements interface-connection
|
|
:return: a listener object that implements listener_interface.py
|
|
"""
|