binaryninja/scc-docs/listen.txt
Giulio De Pasquale 52e9dc828b dindon
2018-12-13 18:39:52 +00:00

17 lines
448 B
Plaintext

listen
======
:title: Shellcode Compiler Runtime
---------------------------------------------
int listen(int sockfd, int backlog);
---------------------------------------------
Listens for new connections on socket `sockfd`. The maximum number of queued connections is `backlog`. Returns
zero on success, or the negation of the error code on failure.
See also
--------
link:accept.html[accept],
link:bind.html[bind],
link:socket.html[socket]