recv method

int recv(
  1. int sockfd,
  2. List<int> buf,
  3. int len,
  4. int flags,
)

Receive data from a socket

Implementation

int recv(int sockfd, List<int> buf, int len, int flags) {
  return -1; // Stubbed
}