diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/support/sockutil.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/support/sockutil.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lldb/packages/Python/lldbsuite/support/sockutil.py b/lldb/packages/Python/lldbsuite/support/sockutil.py deleted file mode 100644 index 56a9ed8bd79..00000000000 --- a/lldb/packages/Python/lldbsuite/support/sockutil.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -See https://llvm.org/LICENSE.txt for license information. -SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception - -Helper functions for working with sockets. -""" - -# Python modules: -import io -import socket - -# LLDB modules -import use_lldb_suite - - -def recvall(sock, size): - bytes = io.BytesIO() - while size > 0: - this_result = sock.recv(size) - bytes.write(this_result) - size -= len(this_result) - return bytes.getvalue() |