Computer Science, asked by priyanshishahu08, 11 months ago

what exactly happens after each system call in sockets, both at the client and at the server? ​

Answers

Answered by tarylthomas42
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