What are socket exceptions? What is out-of-band data?
Answer Posted / chaitanya
Unlike exceptions in C++, socket exceptions do not indicate that an error has occured. Socket exceptions usually refer to the notification that out-of-band data has arrived. Out-of-band data (called "urgent data" in TCP) looks to the application like a separate stream of data from the main data stream. This can be useful for separating two different kinds of data. Note that just because it is called "urgent data" does not mean that it will be delivered any faster, or with higher priorety than data in the in-band data stream. Also beware that unlike the main data stream, the out-of-bound data may be lost if your application can't keep up with it.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why do I get EPROTO from read()?
What is a socket set used for?
What is af_inet in socket?
Are sockets files?
How to find other end of unix socket connection?
What's the difference between a socket and a port?
How can I write a multi-homed server?
What is socket programming in java?
system choose one for me on the connect() call? Should I bind() a port number in my client program, or let the?
How are unix domain sockets implemented?
How can I force a socket to send the data in its buffer?
What are the pros/cons of select(), non-blocking I/O and SIGIO?
Is there any advantage to handling the signal, rather than just ignoring it and checking for the EPIPE error? Are there any useful parameters passed to the signal catching function?
Why do we need socket programming?
Why does the sockets buffer fill up sooner than expected?