Files
PiDoorbell/.vscode/Pico-W-Stub/lwip.pyi
Ádám Kovács db76621806 Project v1
2023-11-02 16:02:16 +01:00

40 lines
1.5 KiB
Python

from _typeshed import Incomplete as Incomplete
SOCK_STREAM: int
SOCK_RAW: int
SOCK_DGRAM: int
SOL_SOCKET: int
SO_BROADCAST: int
SO_REUSEADDR: int
AF_INET6: int
AF_INET: int
IP_DROP_MEMBERSHIP: int
IPPROTO_IP: int
IP_ADD_MEMBERSHIP: int
def reset(*args, **kwargs) -> Incomplete: ...
def print_pcbs(*args, **kwargs) -> Incomplete: ...
def getaddrinfo(*args, **kwargs) -> Incomplete: ...
def callback(*args, **kwargs) -> Incomplete: ...
class socket:
def recvfrom(self, *args, **kwargs) -> Incomplete: ...
def recv(self, *args, **kwargs) -> Incomplete: ...
def makefile(self, *args, **kwargs) -> Incomplete: ...
def listen(self, *args, **kwargs) -> Incomplete: ...
def settimeout(self, *args, **kwargs) -> Incomplete: ...
def sendall(self, *args, **kwargs) -> Incomplete: ...
def setsockopt(self, *args, **kwargs) -> Incomplete: ...
def setblocking(self, *args, **kwargs) -> Incomplete: ...
def sendto(self, *args, **kwargs) -> Incomplete: ...
def readline(self, *args, **kwargs) -> Incomplete: ...
def readinto(self, *args, **kwargs) -> Incomplete: ...
def read(self, *args, **kwargs) -> Incomplete: ...
def close(self, *args, **kwargs) -> Incomplete: ...
def connect(self, *args, **kwargs) -> Incomplete: ...
def send(self, *args, **kwargs) -> Incomplete: ...
def bind(self, *args, **kwargs) -> Incomplete: ...
def accept(self, *args, **kwargs) -> Incomplete: ...
def write(self, *args, **kwargs) -> Incomplete: ...
def __init__(self, *argv, **kwargs) -> None: ...