MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / recvfrom

Method recvfrom

tools/python-3.11.9-amd64/Lib/ssl.py:1318–1324  ·  view source on GitHub ↗
(self, buflen=1024, flags=0)

Source from the content-addressed store, hash-verified

1316 return super().recv_into(buffer, nbytes, flags)
1317
1318 def recvfrom(self, buflen=1024, flags=0):
1319 self._checkClosed()
1320 if self._sslobj is not None:
1321 raise ValueError("recvfrom not allowed on instances of %s" %
1322 self.__class__)
1323 else:
1324 return super().recvfrom(buflen, flags)
1325
1326 def recvfrom_into(self, buffer, nbytes=None, flags=0):
1327 self._checkClosed()

Callers 2

get_requestMethod · 0.45
receiverFunction · 0.45

Calls 1

_checkClosedMethod · 0.95

Tested by

no test coverage detected