Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.20 KB  |  hits: 40  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. BSD sockets and timeouts in iOS
  2. struct timeval tv;
  3. tv.tv_sec = 0;
  4. tv.tv_usec = 0;
  5. if (setsockopt(sockfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) == -1) {
  6.     perror("setsockopt");
  7.     exit(1);
  8. }