![]() |
![]() |
|
|
![]() |
![]() |
X25/9000: X.25/9000 Programmer's Guide > Chapter 4 Sending and Receiving
Data![]() Using Nonblocking I/O |
|
Sockets are created in blocking I/O mode by default. You can specify that a socket be put in nonblocking mode with the ioctl(FIOSNBIO) call. The syntax for the ioctl(FIOSNBIO) system call and its parameters are described below.
sdA socket descriptor for an SVC socket. FIOSNBIOControls whether the socket is set to blocking or nonblocking I/O mode. This is specified by the value in arg. argSpecifies the socket's operating mode. If the value in arg is 0, the socket is in blocking mode. If the value in arg is 1, the socket is in nonblocking mode. Sockets are in blocking mode by default. errUpon successful completion, err is set to 0. Otherwise, a value of -1 is returned, and errno is set to indicate the error. The behavior of many system calls changes when the socket is in nonblocking mode. The system calls of primary importance to X.25 programmers are the accept() and connect(), send() and recv(), read() and write(), and ioctl(). These differences are described below.
When the INTERRUPT CONFIRMATION packet arrives, the subsystem sends a SIGURG signal to the process with OOB_VC_INTERRUPT_CONF in the out-of-band queue. The process must not send a second INTERRUPT packet until interrupt confirmation has been received or a reset indication has been received.
When issued in nonblocking mode, the ioctl(X25_RESET_VC) returns 0 and a RESET REQUEST packet is sent on the VC. When a RESET CONFIRMATION packet is received, X.25 sends a SIGURG signal and a OOB_VC_RESET_CONF event is added to the out-of-band queue. No data of any sort may be sent by the process until the confirmation has been received. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|