»Home
»Examples
»Invocation
»Runtime Library
»Python Bindings
»Known Issues
Shellcode Compiler
A custom shellcode compiler for Binary Ninja
int bind(int sockfd, const struct sockaddr* addr, socklen_t addrlen);

Binds the socket sockfd to the address addr. The following address types are supported:

struct sockaddr_in;
struct sockaddr_in6;
struct sockaddr_un;
Important The socket family member of the address structure must use the AF_* constants. The PF_* constants must only be used when creating sockets. This is to automatically set the length field present only on BSD. The length fields are not explicitly present in this runtime.

See also