home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
TELECOM
/
OS9_Unix.lzh
/
RSHSRC
/
set_block.c
< prev
next >
Wrap
Text File
|
1992-10-02
|
275b
|
19 lines
/*
* Utility for setting sockets into non-blocking mode
*/
#include <sgstat.h>
int set_skt_block(skt,onoff)
int skt, onoff;
{
struct sgbuf buf;
if(_gs_opt(skt,&buf) == -1)
return -1;
buf.sg_noblock=onoff;
if(_ss_opt(skt,&buf) == -1)
return -1;
return 0;
}