socket programming: How do I handle out of band data
Posted
by soulmerge
on Stack Overflow
See other posts from Stack Overflow
or by soulmerge
Published on 2009-02-26T10:14:01Z
Indexed on
2010/05/30
8:32 UTC
Read the original article
Hit count: 245
sockets
|out-of-band
I just looked into wikipedia's entry on out-of-band data and as far as I understand, OOB data is somehow flagged more important and treated as ordinary data, but transmitted in a seperate stream, which profoundly confuses me.
The actual question would be (besides "Could someone explain what OOB data is?"):
I'm writing a unix application that uses sockets and need to make use of select() and was wondering what to do with the exceptfds parameter? Do I need to put all my sockets into this parameter and react to such events? Or do I just ignore them?
© Stack Overflow or respective owner