binaryninja/personal/scc-docs/send_all.txt

17 lines
521 B
Plaintext
Raw Normal View History

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