what exactly happens after each system call in sockets, both at the client and at the server?
Answers
Answered by
4
Answer:
The difference between the two lies in the system calls each kind of application makes. Server sockets will call bind() to be associated with a port. ... If a socket doesn't call bind() the OS will just choose an ephemeral port for it, which is fine for clients because they are doing the calling; no one needs to call them.
Explanation:
Similar questions