FACT++  1.0
int set_non_blocking ( int  channel)

Definition at line 1407 of file tcpip.c.

Referenced by tcpip_write_nowait().

1408 {
1409  int ret, flags = 1;
1410  ret = ioctl(channel, FIONBIO, &flags );
1411  if(ret == -1)
1412  {
1413 #ifdef DEBUG
1414  printf("ioctl non block returned -1\n");
1415 #endif
1416  return(ret);
1417  }
1418  return(1);
1419 }

+ Here is the caller graph for this function: