Just as the title saying,in a tcp connect example
- a server create a sockfd with
socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)function, - then it
bindthe sockfd to a local sockaddr struct, - the server
acceptthe client's connection, and returns a clientfd - server and client
sendorrecvmessages
here is the question,after step 4, is it necessary to close the clientfd by manual?