MCPcopy Create free account
hub / github.com/LabPy/lantz / recvrecord

Function recvrecord

lantz/drivers/legacy/rpc.py:279–285  ·  view source on GitHub ↗
(sock)

Source from the content-addressed store, hash-verified

277
278
279def recvrecord(sock):
280 record = b''
281 last = 0
282 while not last:
283 last, frag = recvfrag(sock)
284 record = record + frag
285 return record
286
287
288class RawTCPClient(Client):

Callers 2

do_callMethod · 0.85
sessionMethod · 0.85

Calls 1

recvfragFunction · 0.85

Tested by

no test coverage detected