Computer Science, asked by gahlotkhushi1906, 1 year ago

Write a program to implement a distributed chat server using tcp sockets in c

Answers

Answered by N3KKI
2

the socket to server address. using listen(), put the server socket in a passive mode, where it waits for the client to approach the server to make a connection

Answered by capricornusyellow
0

Program to implement a distributed chat server using TCP sockets in c

Explanation:

  • If there is connection created between client and server by using the TCP then it has some functionality.
  • The TCP is required more for application that is more reliable and the transmission time of an application is less critical.
  • This is also used with another such as HTTP, HTTPs, FTP, SMTP Telnet etc.
  • The TCP handles all the congestion control and reliability of the data.
  • The TCP also check the reliability error and error recovery.
  • There are entire process that is broken flowing down:
  • Server -Socket- Stockpot- Bind- Listen- Accept- Send/Recv

Learn More: HTTP, reliability

https://brainly.in/question/18446965

Similar questions