binaryninja/personal/scc-docs/recv_all.txt

18 lines
550 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
recv_all
========
:title: Shellcode Compiler Runtime
---------------------------------------------
ssize_t recv_all(int fd, void* buf, size_t n, int flags);
---------------------------------------------
Receives `n` bytes from socket handle `fd` and places the result into `buf`. Does not return until all `n` bytes
have been received, or there is an error. Returns the number of bytes received, or the negation of the error
code on error.
See also
--------
link:recv.html[recv],
link:send_all.html[send_all],
link:send_string.html[send_string]