5
votes
3answers
363 views
Closing/cleaning up “mixed” file descriptors / sockets.
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, …
