When I create a socket using accept() and make a FILE out of it using fdopen(), what do I have to do to clean everything up? Do I need to do fclose() on the FILE, shutdown() and close() on the socket, or only the shutdown() and or close() or fclose()? If I don't do fclose(), do I have to free() the FILE pointer manually?
|
|
|
|
|
|
|
From man fdopen:
So I would just use fclose(), which also closes the underlying file descriptor. I don't know whether shutdown() is needed, either. |
||
|
|
|
From http://opengroup.org/onlinepubs/007908775/xsh/fclose.html
If you've wrapped your socket in a stream it probably no longer makes sense to shutdown(), at least not without flushing the stream first. But I won't swear to that, because I don't know that there are no uses where you'd want to shutdown() rather than just close(). |
|||
|
|
|
|
You have 2 things here you need to clean up: the stream represented by Personally I have never used editOthers have correctly pointed out that |
|||
|
|
