mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
feat/561-added autonat service
This commit is contained in:
committed by
Paul Robinson
parent
fd893afba6
commit
9655c88788
26
libp2p/host/autonat/pb/autonat_pb2_grpc.pyi
Normal file
26
libp2p/host/autonat/pb/autonat_pb2_grpc.pyi
Normal file
@ -0,0 +1,26 @@
|
||||
from typing import Any, List, Optional, Tuple, Union
|
||||
import grpc
|
||||
|
||||
class AutoNATStub:
|
||||
def __init__(self, channel: grpc.Channel) -> None: ...
|
||||
Dial: Any
|
||||
|
||||
class AutoNATServicer:
|
||||
def Dial(self, request: Any, context: Any) -> Any: ...
|
||||
|
||||
def add_AutoNATServicer_to_server(servicer: AutoNATServicer, server: Any) -> None: ...
|
||||
|
||||
class AutoNAT:
|
||||
@staticmethod
|
||||
def Dial(
|
||||
request: Any,
|
||||
target: str,
|
||||
options: Tuple[Any, ...] = (),
|
||||
channel_credentials: Optional[Any] = None,
|
||||
call_credentials: Optional[Any] = None,
|
||||
insecure: bool = False,
|
||||
compression: Optional[Any] = None,
|
||||
wait_for_ready: Optional[bool] = None,
|
||||
timeout: Optional[float] = None,
|
||||
metadata: Optional[List[Tuple[str, str]]] = None,
|
||||
) -> Any: ...
|
||||
Reference in New Issue
Block a user