Hi,
In C++, if I have a socket, how can I create an ostream object from it?
I have googled some example: http://members.aon.at/hstraub/linux/socket++/docu/socket++_10.html
And i have tried: sockbuf sb(sockfd); std::ostream outputStream(&sb);
But I can't find the .h file and the library to link with for 'sockbuf'. Is that part of a standard c++ library?
Thank you.