massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / paramiko / paramiko / server.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/paramiko/paramiko/server.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/paramiko/paramiko/server.pyi
new file mode 100644 (file)
index 0000000..22647fd
--- /dev/null
@@ -0,0 +1,51 @@
+import threading
+from typing import Tuple
+
+from paramiko.channel import Channel
+from paramiko.message import Message
+from paramiko.pkey import PKey
+from paramiko.transport import Transport
+
+class ServerInterface:
+    def check_channel_request(self, kind: str, chanid: int) -> int: ...
+    def get_allowed_auths(self, username: str) -> str: ...
+    def check_auth_none(self, username: str) -> int: ...
+    def check_auth_password(self, username: str, password: str) -> int: ...
+    def check_auth_publickey(self, username: str, key: PKey) -> int: ...
+    def check_auth_interactive(self, username: str, submethods: str) -> int | InteractiveQuery: ...
+    def check_auth_interactive_response(self, responses: list[str]) -> int | InteractiveQuery: ...
+    def check_auth_gssapi_with_mic(self, username: str, gss_authenticated: int = ..., cc_file: str | None = ...) -> int: ...
+    def check_auth_gssapi_keyex(self, username: str, gss_authenticated: int = ..., cc_file: str | None = ...) -> int: ...
+    def enable_auth_gssapi(self) -> bool: ...
+    def check_port_forward_request(self, address: str, port: int) -> int: ...
+    def cancel_port_forward_request(self, address: str, port: int) -> None: ...
+    def check_global_request(self, kind: str, msg: Message) -> bool | Tuple[bool | int | str, ...]: ...
+    def check_channel_pty_request(
+        self, channel: Channel, term: bytes, width: int, height: int, pixelwidth: int, pixelheight: int, modes: bytes
+    ) -> bool: ...
+    def check_channel_shell_request(self, channel: Channel) -> bool: ...
+    def check_channel_exec_request(self, channel: Channel, command: bytes) -> bool: ...
+    def check_channel_subsystem_request(self, channel: Channel, name: str) -> bool: ...
+    def check_channel_window_change_request(
+        self, channel: Channel, width: int, height: int, pixelwidth: int, pixelheight: int
+    ) -> bool: ...
+    def check_channel_x11_request(
+        self, channel: Channel, single_connection: bool, auth_protocol: str, auth_cookie: bytes, screen_number: int
+    ) -> bool: ...
+    def check_channel_forward_agent_request(self, channel: Channel) -> bool: ...
+    def check_channel_direct_tcpip_request(self, chanid: int, origin: tuple[str, int], destination: tuple[str, int]) -> int: ...
+    def check_channel_env_request(self, channel: Channel, name: bytes, value: bytes) -> bool: ...
+    def get_banner(self) -> tuple[str | None, str | None]: ...
+
+class InteractiveQuery:
+    name: str
+    instructions: str
+    prompts: list[tuple[str, bool]]
+    def __init__(self, name: str = ..., instructions: str = ..., *prompts: str | tuple[str, bool]) -> None: ...
+    def add_prompt(self, prompt: str, echo: bool = ...) -> None: ...
+
+class SubsystemHandler(threading.Thread):
+    def __init__(self, channel: Channel, name: str, server: ServerInterface) -> None: ...
+    def get_server(self) -> ServerInterface: ...
+    def start_subsystem(self, name: str, transport: Transport, channel: Channel) -> None: ...
+    def finish_subsystem(self) -> None: ...